Notion Highlighter

A chrome extension for saving highlighs to your notion

O que é Notion Highlighter?

Notion Highlighter é uma extensão do Chrome desenvolvida por Amber Stone, e sua principal característica é "A chrome extension for saving highlighs to your notion".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Notion Highlighter

Baixe arquivos de extensão Notion Highlighter no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        A chrome extension for saving highlighs to your notion                    

Informações Básicas da Extensão

Nome Notion Highlighter Notion Highlighter
ID hlljedmocklhgnbjmcpjhbdaldbeceop
URL Oficial https://chromewebstore.google.com/detail/notion-highlighter/hlljedmocklhgnbjmcpjhbdaldbeceop
Descrição A chrome extension for saving highlighs to your notion
Tamanho do Arquivo 145 KB
Contagem de Instalações 233
Versão Atual 0.0.1
Última Atualização 2022-10-15
Data de Publicação 2022-10-14
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Amber Stone
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://bryantchan.notion.site/How-to-use-6715680004f942858f7b540511d70852
URL da Página de Ajuda https://bryantchan.notion.site/How-to-use-6715680004f942858f7b540511d70852
Idiomas Suportados 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\/*"
    ]
}