Notion Helper

An extension to enhance your experience with Notion

Notion Helperคืออะไร?

Notion Helper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย meshkani.mo และคุณลักษณะหลักของมันคือ "An extension to enhance your experience with Notion"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Notion Helper

ดาวน์โหลดไฟล์ส่วนขยาย Notion Helper ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Features:
- RTL
- Custom Font (Type in the name of the font you want. Make sure that the font is installed on your computer)

If you need any other features that are missing, let me know in the comments.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Notion Helper Notion Helper
ID jckgilkkfgibbeokglganbfdipcblibd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/notion-helper/jckgilkkfgibbeokglganbfdipcblibd
คำอธิบาย An extension to enhance your experience with Notion
ขนาดไฟล์ 47.12 KB
จำนวนการติดตั้ง 2,208
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2021-10-01
วันที่เผยแพร่ 2021-09-23
คะแนน 5.00/5 รวมทั้งหมด 29 คะแนน
ผู้พัฒนา meshkani.mo
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Notion Helper",
    "version": "1.0.1",
    "description": "An extension to enhance your experience with Notion",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "activeTab",
        "*:\/\/*.notion.so\/*",
        "*:\/\/*.notion.site\/*"
    ],
    "browser_action": {
        "default_popup": "src\/popup\/popup.html",
        "default_icon": {
            "32": "\/logo\/logo-32.png",
            "48": "\/logo\/logo-48.png",
            "128": "\/logo\/logo-128.png"
        }
    },
    "background": {
        "scripts": [
            "src\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.notion.so\/*",
                "*:\/\/*.notion.site\/*"
            ],
            "js": [
                "src\/scripts\/rtl.js",
                "src\/scripts\/font.js"
            ],
            "all_frames": true
        }
    ],
    "icons": {
        "32": "\/logo\/logo-32.png",
        "48": "\/logo\/logo-48.png",
        "128": "\/logo\/logo-128.png"
    }
}