Notion Highlighter

A chrome extension for saving highlighs to your notion

Notion Highlighterとは何ですか?

Notion HighlighterはAmber Stoneによって開発されたChromeの拡張機能で、その主な機能は「A chrome extension for saving highlighs to your notion」です。

拡張機能のスクリーンショット

screenshot

Notion Highlighter拡張機能のCRXファイルをダウンロード

Notion Highlighter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        A chrome extension for saving highlighs to your notion                    

拡張機能の基本情報

名前 Notion Highlighter Notion Highlighter
ID hlljedmocklhgnbjmcpjhbdaldbeceop
公式URL https://chromewebstore.google.com/detail/notion-highlighter/hlljedmocklhgnbjmcpjhbdaldbeceop
説明 A chrome extension for saving highlighs to your notion
ファイルサイズ 145 KB
インストール数 233
現在のバージョン 0.0.1
最終更新日 2022-10-15
公開日 2022-10-14
評価 5.00/5 合計 1 レビュー
開発者 Amber Stone
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://bryantchan.notion.site/How-to-use-6715680004f942858f7b540511d70852
ヘルプページのURL https://bryantchan.notion.site/How-to-use-6715680004f942858f7b540511d70852
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Notion Highlighter",
    "version": "0.0.1",
    "description": "A chrome extension for saving highlighs to your notion",
    "options_page": "src\/pages\/options\/index.html",
    "background": {
        "service_worker": "src\/pages\/background\/index.js",
        "type": "module"
    },
    "action": {
        "default_icon": "icon-34.png",
        "default_title": "Click to show"
    },
    "chrome_url_overrides": [],
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "src\/pages\/content\/index.js"
            ],
            "css": [
                "assets\/css\/contentStyle.chunk.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/js\/*.js",
                "assets\/css\/*.css",
                "icon-128.png",
                "icon-34.png"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "identity",
        "storage",
        "activeTab"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "https:\/\/cors-anywhere.herokuapp.com\/corsdemo\/*",
        "https:\/\/api.notion.com\/*",
        "https:\/\/amber-highlighter-proxy.bryantandk.workers.dev\/*"
    ]
}