Aligns the text in the correct way on https://notion.so .
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "BetterNotionRTL",
"version": "1.0",
"description": "Aligns the text in the correct way on https://notion.so",
"manifest_version": 2,
"permissions": [
"tabs",
"*://*.notion.so/*"
],
"content_scripts": [
{
"matches": [
"*://*.notion.so/*"
],
"js": [
"index.js"
],
"run_at": "document_idle"
}
],
"icons": {
"48": "icons/betterrtlicon.png"
}
}