Coder Notes
This extension allows you to save snippets of code from around the web
Vad är Coder Notes?
Coder Notes är en Chrome-tillägg utvecklad av codernotesdev, och dess huvudfunktion är "This extension allows you to save snippets of code from around the web".
Tilläggsskärmbilder
Ladda ner Coder Notes-förlängningens CRX-fil
Ladda ner Coder Notes-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
You can download the Coder Notes Chrome Extension to save snippets of code from your browser.
Grundläggande Information om Tillägg
Namn | Coder Notes |
ID | ajpkpmmiaofbkfchcombbcgjpibnpgfp |
Officiell webbadress | https://chromewebstore.google.com/detail/coder-notes/ajpkpmmiaofbkfchcombbcgjpibnpgfp |
Beskrivning | This extension allows you to save snippets of code from around the web |
Filstorlek | 51.63 KB |
Antal Installationer | 16 |
Aktuell Version | 0.0.0.3 |
Senast Uppdaterad | 2016-04-03 |
Publiceringsdatum | 2016-04-03 |
Betyg | 3.50/5 Totalt 2 Betyg |
Utvecklare | codernotesdev |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | http://codernotes.us |
Stödda Språk | 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\/*" ] } } |