Notion Highlighter

A chrome extension for saving highlighs to your notion

What is Notion Highlighter?

Notion Highlighter is a Chrome extension developed by Amber Stone, and its main feature is "A chrome extension for saving highlighs to your notion".

Extension Screenshots

screenshot

Download Notion Highlighter Extension CRX File

Download Notion Highlighter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        A chrome extension for saving highlighs to your notion                    

Extension Basic Information

Name Notion Highlighter Notion Highlighter
ID hlljedmocklhgnbjmcpjhbdaldbeceop
Official URL https://chromewebstore.google.com/detail/notion-highlighter/hlljedmocklhgnbjmcpjhbdaldbeceop
Description A chrome extension for saving highlighs to your notion
File Size 145 KB
Installation Count 233
Current Version 0.0.1
Last Updated 2022-10-15
Publish Date 2022-10-14
Rating 5.00/5 Total 1 Ratings
Developer Amber Stone
Email [email protected]
Payment Type free
Extension Website https://bryantchan.notion.site/How-to-use-6715680004f942858f7b540511d70852
Help Page URL https://bryantchan.notion.site/How-to-use-6715680004f942858f7b540511d70852
Supported Languages 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\/*"
    ]
}