Notion Helper

An extension to enhance your experience with Notion

什麼是Notion Helper?

Notion Helper是由meshkani.mo開發的Chrome擴展程式,該擴展的主要功能是“An extension to enhance your experience with Notion”。

擴展截圖

screenshot

下載Notion Helper擴展crx文件

下載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
官方網址 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"
    }
}