Take Note

An extension to help you take notes on long articles in your browser. Recognizes and formats code.

Cos'è Take Note?

Take Note è un'estensione di Chrome sviluppata da sarahhubschmail, e la sua funzione principale è "An extension to help you take notes on long articles in your browser. Recognizes and formats code.".

Screenshot dell'Estensione

Scarica il file CRX dell'estensione Take Note

Scarica i file di estensione Take Note 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

                        An app that helps you take notes on articles, blog posts, or documentation.

Select the text you want to save, right click, and press 'Take Note'. You can go back and edit or delete any notes you take.

The extension also recognizes and formats any code you save as a note.                    

Informazioni di Base sull'Estensione

Nome Take Note Take Note
ID jkhfbnadhkkefjioelljpcmkgnoamakg
URL Ufficiale https://chrome.google.com/webstore/detail/take-note/jkhfbnadhkkefjioelljpcmkgnoamakg
Descrizione An extension to help you take notes on long articles in your browser. Recognizes and formats code.
Dimensione del File 1.87 MB
Conteggio Installazioni 162
Versione Corrente 0.0.0.1
Ultimo Aggiornamento 2017-08-10
Data di Pubblicazione 2017-08-10
Valutazione 4.00/5 Totale 6 Valutazioni
Sviluppatore sarahhubschmail
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Take Note",
    "description": "An extension to help you take notes on long articles in your browser. Recognizes and formats code.",
    "background": {
        "scripts": [
            "js\/jquery-3.2.1.js",
            "js\/background.js"
        ],
        "css": [
            "style.css"
        ]
    },
    "version": "0.0.0.1",
    "manifest_version": 2,
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Take Note",
        "default_icon": "images\/icon.png"
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "storage",
        "tabs",
        "webNavigation"
    ],
    "icons": {
        "16": "images\/icon-bitty.png",
        "48": "images\/icon-bitty.png",
        "128": "images\/icon-bitty.png"
    }
}