Coder Notes

This extension allows you to save snippets of code from around the web

Cos'è Coder Notes?

Coder Notes è un'estensione di Chrome sviluppata da codernotesdev, e la sua funzione principale è "This extension allows you to save snippets of code from around the web".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Coder Notes

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

                        You can download the Coder Notes Chrome Extension to save snippets of code from your browser.                    

Informazioni di Base sull'Estensione

Nome Coder Notes Coder Notes
ID ajpkpmmiaofbkfchcombbcgjpibnpgfp
URL Ufficiale https://chromewebstore.google.com/detail/coder-notes/ajpkpmmiaofbkfchcombbcgjpibnpgfp
Descrizione This extension allows you to save snippets of code from around the web
Dimensione del File 51.63 KB
Conteggio Installazioni 16
Versione Corrente 0.0.0.3
Ultimo Aggiornamento 2016-04-03
Data di Pubblicazione 2016-04-03
Valutazione 3.50/5 Totale 2 Valutazioni
Sviluppatore codernotesdev
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://codernotes.us
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Coder Notes",
    "description": "This extension allows you to save snippets of code from around the web",
    "version": "0.0.0.3",
    "browser_action": {
        "default_icon": "img\/codernotesCE.png",
        "default_popup": "login.html",
        "default_title": "Save to Coder Notes"
    },
    "permissions": [
        "storage",
        "unlimitedStorage",
        "activeTab",
        "https:\/\/ajax.googleapis.com\/",
        "tabs",
        "http:\/\/limitless-island-46764.herokuapp.com\/*"
    ],
    "background": {
        "scripts": [
            "jquery-1.12.2.min.js",
            "popup.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/limitless-island-46764.herokuapp.com\/*"
            ],
            "js": [
                "jquery-1.12.2.min.js",
                "popup.js"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "http:\/\/limitless-island-46764.herokuapp.com\/*"
        ]
    }
}