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
电子邮箱 [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\/*"
    ]
}