Coder Notes
This extension allows you to save snippets of code from around the web
What is Coder Notes?
Coder Notes is a Chrome extension developed by codernotesdev, and its main feature is "This extension allows you to save snippets of code from around the web".
Extension Screenshots
Download Coder Notes Extension CRX File
Download Coder Notes extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
You can download the Coder Notes Chrome Extension to save snippets of code from your browser.
Extension Basic Information
Name | Coder Notes |
ID | ajpkpmmiaofbkfchcombbcgjpibnpgfp |
Official URL | https://chromewebstore.google.com/detail/coder-notes/ajpkpmmiaofbkfchcombbcgjpibnpgfp |
Description | This extension allows you to save snippets of code from around the web |
File Size | 51.63 KB |
Installation Count | 16 |
Current Version | 0.0.0.3 |
Last Updated | 2016-04-03 |
Publish Date | 2016-04-03 |
Rating | 3.50/5 Total 2 Ratings |
Developer | codernotesdev |
[email protected] | |
Payment Type | free |
Extension Website | http://codernotes.us |
Supported Languages | 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\/*" ] } } |