Coder Notes
This extension allows you to save snippets of code from around the web
Hvad er Coder Notes?
Coder Notes er en Chrome-udvidelse udviklet af codernotesdev, og dens hovedfunktion er "This extension allows you to save snippets of code from around the web".
Udvidelsesskærmbilleder
Download Coder Notes-udvidelses-CRX-fil
Download Coder Notes-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
You can download the Coder Notes Chrome Extension to save snippets of code from your browser.
Grundlæggende oplysninger om udvidelsen
Navn | Coder Notes |
ID | ajpkpmmiaofbkfchcombbcgjpibnpgfp |
Officiel URL | https://chromewebstore.google.com/detail/coder-notes/ajpkpmmiaofbkfchcombbcgjpibnpgfp |
Beskrivelse | This extension allows you to save snippets of code from around the web |
Filstørrelse | 51.63 KB |
Antal Installationer | 16 |
Nuværende Version | 0.0.0.3 |
Senest Opdateret | 2016-04-03 |
Udgivelsesdato | 2016-04-03 |
Bedømmelse | 3.50/5 Samlet 2 Bedømmelser |
Udvikler | codernotesdev |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | http://codernotes.us |
Understøttede Sprog | 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\/*" ] } } |