Coder Notes

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

Was ist Coder Notes?

Coder Notes ist eine Chrome-Erweiterung, die von codernotesdev entwickelt wurde, und ihr Hauptmerkmal ist "This extension allows you to save snippets of code from around the web".

Erweiterungsscreenshots

screenshot

Coder Notes-Erweiterungs-CRX-Datei herunterladen

Laden Sie Coder Notes-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Coder Notes Coder Notes
ID ajpkpmmiaofbkfchcombbcgjpibnpgfp
Offizielle URL https://chromewebstore.google.com/detail/coder-notes/ajpkpmmiaofbkfchcombbcgjpibnpgfp
Beschreibung This extension allows you to save snippets of code from around the web
Dateigröße 51.63 KB
Installationsanzahl 16
Aktuelle Version 0.0.0.3
Letztes Update 2016-04-03
Veröffentlichungsdatum 2016-04-03
Bewertung 3.50/5 Insgesamt 2 Bewertungen
Entwickler codernotesdev
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite http://codernotes.us
Unterstützte Sprachen 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\/*"
        ]
    }
}