Coder Notes
This extension allows you to save snippets of code from around the web
Co je Coder Notes?
Coder Notes je rozšíření Chrome vyvinuté codernotesdev, a jeho hlavní funkcí je „This extension allows you to save snippets of code from around the web“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Coder Notes
Stáhněte si soubory rozšíření Coder Notes ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
You can download the Coder Notes Chrome Extension to save snippets of code from your browser.
Základní Informace o Rozšíření
Název | Coder Notes |
ID | ajpkpmmiaofbkfchcombbcgjpibnpgfp |
Oficiální URL | https://chromewebstore.google.com/detail/coder-notes/ajpkpmmiaofbkfchcombbcgjpibnpgfp |
Popis | This extension allows you to save snippets of code from around the web |
Velikost souboru | 51.63 KB |
Počet instalací | 16 |
Aktuální Verze | 0.0.0.3 |
Poslední Aktualizace | 2016-04-03 |
Datum Vydání | 2016-04-03 |
Hodnocení | 3.50/5 Celkem 2 Hodnocení |
Vývojář | codernotesdev |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | http://codernotes.us |
Podporované Jazyky | 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\/*" ] } } |