Notion Highlighter

A chrome extension for saving highlighs to your notion

Cos'è Notion Highlighter?

Notion Highlighter è un'estensione di Chrome sviluppata da Amber Stone, e la sua funzione principale è "A chrome extension for saving highlighs to your notion".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Notion Highlighter

Scarica i file di estensione Notion Highlighter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        A chrome extension for saving highlighs to your notion                    

Informazioni di Base sull'Estensione

Nome Notion Highlighter Notion Highlighter
ID hlljedmocklhgnbjmcpjhbdaldbeceop
URL Ufficiale https://chromewebstore.google.com/detail/notion-highlighter/hlljedmocklhgnbjmcpjhbdaldbeceop
Descrizione A chrome extension for saving highlighs to your notion
Dimensione del File 145 KB
Conteggio Installazioni 233
Versione Corrente 0.0.1
Ultimo Aggiornamento 2022-10-15
Data di Pubblicazione 2022-10-14
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Amber Stone
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://bryantchan.notion.site/How-to-use-6715680004f942858f7b540511d70852
URL della Pagina di Aiuto https://bryantchan.notion.site/How-to-use-6715680004f942858f7b540511d70852
Lingue Supportate 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\/*"
    ]
}