Web Notes

Allows user to stick notes for specific url.

Cos'è Web Notes?

Web Notes è un'estensione di Chrome sviluppata da https://sunnysinghdev.blogspot.com, e la sua funzione principale è "Allows user to stick notes for specific url.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Web Notes

Scarica i file di estensione Web Notes 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

                        Web Notes is a chrome extension that allows user to save notes based on a part(tag) of a url. So whenever you visit the url it will show notes saved related to tag in the url.                    

Informazioni di Base sull'Estensione

Nome Web Notes Web Notes
ID lhoaebkagfpaglcedmehlkbmchagmimj
URL Ufficiale https://chromewebstore.google.com/detail/web-notes/lhoaebkagfpaglcedmehlkbmchagmimj
Descrizione Allows user to stick notes for specific url.
Dimensione del File 37.45 KB
Conteggio Installazioni 254
Versione Corrente 0.1
Ultimo Aggiornamento 2018-01-19
Data di Pubblicazione 2018-01-18
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore https://sunnysinghdev.blogspot.com
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Web Notes",
    "version": "0.1",
    "description": "Allows user to stick notes for specific url.",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "content.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "tabs",
        "activeTab"
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "commands": {
        "toggle-feature": {
            "suggested_key": {
                "default": "Ctrl+Shift+0",
                "mac": "Command+Shift+0"
            },
            "description": "Toggle the helpcenter screen",
            "global": true
        },
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+9",
                "mac": "Command+Shift+9",
                "chromeos": "Ctrl+Shift+9",
                "linux": "Ctrl+Shift+9"
            }
        }
    }
}