Web Notes
Allows user to stick notes for specific url.
Web Notes क्या है?
Web Notes https://sunnysinghdev.blogspot.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows user to stick notes for specific url."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Web Notes एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Web Notes is a chrome extension that allows user to save notes based on a part(tag) of a url. So whenever you visit the url it will show notes saved related to tag in the url.
एक्सटेंशन की मूल जानकारी
नाम | Web Notes |
ID | lhoaebkagfpaglcedmehlkbmchagmimj |
आधिकारिक URL | https://chromewebstore.google.com/detail/web-notes/lhoaebkagfpaglcedmehlkbmchagmimj |
विवरण | Allows user to stick notes for specific url. |
फ़ाइल का आकार | 37.45 KB |
स्थापना संख्या | 254 |
वर्तमान संस्करण | 0.1 |
अंतिम अपडेट | 2018-01-19 |
प्रकाशन तिथि | 2018-01-18 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | https://sunnysinghdev.blogspot.com |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Web Notes", "version": "0.1", "description": "Allows user to stick notes for specific url.", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "jquery-3.2.1.min.js", "content.js" ] } ], "permissions": [ "storage", "tabs", "activeTab" ], "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "commands": { "toggle-feature": { "suggested_key": { "default": "Ctrl+Shift+0", "mac": "Command+Shift+0" }, "description": "Toggle the helpcenter screen", "global": true }, "_execute_browser_action": { "suggested_key": { "windows": "Ctrl+Shift+9", "mac": "Command+Shift+9", "chromeos": "Ctrl+Shift+9", "linux": "Ctrl+Shift+9" } } } } |