context-note

This extension is a note-taking tool that help users take notes on the web with their context. Most of the time we use bookmark to…

O que é context-note?

context-note é uma extensão do Chrome desenvolvida por Jim Chan, e sua principal característica é "This extension is a note-taking tool that help users take notes on the web with their context. Most of the time we use bookmark to…".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão context-note

Baixe arquivos de extensão context-note 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

                        This extension is a note-taking tool that help users take notes on the web with their context. Most of the time we use bookmark to manage the websites link that are important. However, in some specific scenes such as reading an article or browsing some key information, we also need to mark down the specific sentence and its context. When reviewing these notes, we can simply jump back to that sentence rather than reading the whole page again, where this extension is to extract the text and location information of these notes.                    

Informações Básicas da Extensão

Nome context-note context-note
ID enmeffcefbiehghanidhebgiccljmncl
URL Oficial https://chromewebstore.google.com/detail/context-note/enmeffcefbiehghanidhebgiccljmncl
Descrição This extension is a note-taking tool that help users take notes on the web with their context. Most of the time we use bookmark to…
Tamanho do Arquivo 533 KB
Contagem de Instalações 1,177
Versão Atual 1.3.10
Última Atualização 2022-05-19
Data de Publicação 2021-09-24
Classificação 4.75/5 Total de 4 Avaliações
Desenvolvedor Jim Chan
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/betterRunner/context-note
URL da Página de Ajuda https://github.com/betterRunner/context-note/issues
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "context-note",
    "version": "1.3.10",
    "manifest_version": 3,
    "action": {
        "default_icon": {
            "16": "assets\/icon16.png",
            "48": "assets\/icon48.png",
            "128": "assets\/icon128.png"
        },
        "default_title": "Context Note"
    },
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-scripts\/main.js"
            ],
            "css": [
                "content-scripts\/main.css",
                "content-scripts\/main.44bddb14.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "assets\/*"
            ]
        },
        {
            "resources": [
                "\/assets\/element-icons.9c88a535.woff",
                "\/assets\/element-icons.de5eb258.ttf"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "unlimitedStorage",
        "activeTab",
        "storage"
    ]
}