Notion Highlighter

A chrome extension for saving highlighs to your notion

Wat is Notion Highlighter?

Notion Highlighter is een Chrome-extensie ontwikkeld door Amber Stone, en de belangrijkste functie is "A chrome extension for saving highlighs to your notion".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Notion Highlighter

Download Notion Highlighter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        A chrome extension for saving highlighs to your notion                    

Basisinformatie over de Extensie

Naam Notion Highlighter Notion Highlighter
ID hlljedmocklhgnbjmcpjhbdaldbeceop
Officiële URL https://chromewebstore.google.com/detail/notion-highlighter/hlljedmocklhgnbjmcpjhbdaldbeceop
Beschrijving A chrome extension for saving highlighs to your notion
Bestandsgrootte 145 KB
Aantal Installaties 233
Huidige Versie 0.0.1
Laatst Bijgewerkt 2022-10-15
Publicatiedatum 2022-10-14
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar Amber Stone
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://bryantchan.notion.site/How-to-use-6715680004f942858f7b540511d70852
Help Pagina-URL https://bryantchan.notion.site/How-to-use-6715680004f942858f7b540511d70852
Ondersteunde Talen 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\/*"
    ]
}