Notion RTL
An extension to add RTL support for https://notion.so
什麼是Notion RTL?
Notion RTL是由Omar Bahareth開發的Chrome擴展程式,該擴展的主要功能是“An extension to add RTL support for https://notion.so”。
擴展截圖
下載Notion RTL擴展crx文件
下載Notion RTL擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
THIS EXTENSION IS NOW DEPRECATED.
Please install Notion Enhancer instead:
https://notion-enhancer.github.io/
Once installed, enable the right to left extension.
------------------------------------------------------------------------------------------------
An extension to add RTL support for https://notion.so
Adds preliminary support for Right-to-left (RTL) on Notion (https://notion.so) as a workaround until Notion natively supports it. This is still the initial version and may behave unexpectedly. (Nothing fancy is happening, just adding a dir="auto" on all top-level blocks)
Supported block types:
- Title
- Text
- Lists
- To do lists
Supported database types:
- Tables
- Galleries
- Boards 擴展基本資訊
| 名稱 | |
| ID | fflggojmgaedcocmholcdicoedgaabib |
| 官方網址 | https://chrome.google.com/webstore/detail/notion-rtl/fflggojmgaedcocmholcdicoedgaabib |
| 簡介 | An extension to add RTL support for https://notion.so |
| 檔案大小 | 10.04 KB |
| 安裝次數 | 6,523 |
| 目前版本 | 1.4.0 |
| 更新時間 | 2022-04-06 |
| 上架時間 | 2020-01-04 |
| 評分 | 4.64/5 共 59 次評分 |
| 開發者 | Omar Bahareth |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/obahareth/notion-rtl |
| 說明頁面URL | https://github.com/obahareth/notion-rtl |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Notion RTL",
"version": "1.4.0",
"description": "An extension to add RTL support for https:\/\/notion.so",
"manifest_version": 2,
"permissions": [
"*:\/\/*.notion.so\/*",
"*:\/\/*.notion.site\/*"
],
"content_scripts": [
{
"matches": [
"*:\/\/*.notion.so\/*",
"*:\/\/*.notion.site\/*"
],
"js": [
"src\/index.js"
],
"run_at": "document_idle"
}
],
"icons": {
"16": "logo\/logo-16.png",
"32": "logo\/logo-32.png",
"48": "logo\/logo-48.png",
"128": "logo\/logo-128.png"
}
} | |