Notion RTL
An extension to add RTL support for https://notion.so
Notion RTLคืออะไร?
Notion RTL เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Omar Bahareth และคุณลักษณะหลักของมันคือ "An extension to add RTL support for https://notion.so"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Notion RTL
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
URL อย่างเป็นทางการ | 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" } } |