Coder Notes

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

Wat is Coder Notes?

Coder Notes is een Chrome-extensie ontwikkeld door codernotesdev, en de belangrijkste functie is "This extension allows you to save snippets of code from around the web".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Coder Notes

Download Coder Notes-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Coder Notes Coder Notes
ID ajpkpmmiaofbkfchcombbcgjpibnpgfp
Officiële URL https://chromewebstore.google.com/detail/coder-notes/ajpkpmmiaofbkfchcombbcgjpibnpgfp
Beschrijving This extension allows you to save snippets of code from around the web
Bestandsgrootte 51.63 KB
Aantal Installaties 16
Huidige Versie 0.0.0.3
Laatst Bijgewerkt 2016-04-03
Publicatiedatum 2016-04-03
Beoordeling 3.50/5 Totaal 2 Beoordelingen
Ontwikkelaar codernotesdev
E-mail [email protected]
Betalingswijze free
Extensiewebsite http://codernotes.us
Ondersteunde Talen 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\/*"
        ]
    }
}