Coder Notes
This extension allows you to save snippets of code from around the web
Coder Notes क्या है?
Coder Notes codernotesdev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension allows you to save snippets of code from around the web"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Coder Notes एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
You can download the Coder Notes Chrome Extension to save snippets of code from your browser.
एक्सटेंशन की मूल जानकारी
नाम | Coder Notes |
ID | ajpkpmmiaofbkfchcombbcgjpibnpgfp |
आधिकारिक URL | https://chromewebstore.google.com/detail/coder-notes/ajpkpmmiaofbkfchcombbcgjpibnpgfp |
विवरण | This extension allows you to save snippets of code from around the web |
फ़ाइल का आकार | 51.63 KB |
स्थापना संख्या | 16 |
वर्तमान संस्करण | 0.0.0.3 |
अंतिम अपडेट | 2016-04-03 |
प्रकाशन तिथि | 2016-04-03 |
रेटिंग | 3.50/5 कुल 2 रेटिंग्स |
डेवलपर | codernotesdev |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | http://codernotes.us |
समर्थित भाषाएँ | 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\/*" ] } } |