Chrome Note Keeper
Chrome Note Keeper: keep notes on specific websites pages.
Chrome Note Keeper क्या है?
Chrome Note Keeper Alessandro Pietrantonio द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Chrome Note Keeper: keep notes on specific websites pages."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Chrome Note Keeper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Keep notes on every website page and read it whenever you want! This extension give you the ability to write down notes about a specific web page and save it to Chrome storage. A little badge near the extension icon notify you the presence of a note. CHANGELOGS: --- v1.0 --- - Updated manifest file - Fixes on background --- v0.5 --- - Fixes on icon badge --- v0.4 --- - Added icon badge to notify the presence of notes --- v0.3 --- - Added import/export to options page - Fixes on options page - Larger textarea on popup - Fixes on popup --- v0.2 --- - Textarea label fixed --- v0.1 --- - First release
एक्सटेंशन की मूल जानकारी
नाम | Chrome Note Keeper |
ID | llocbjbocnpindmhcankkhiidpfaiedp |
आधिकारिक URL | https://chromewebstore.google.com/detail/chrome-note-keeper/llocbjbocnpindmhcankkhiidpfaiedp |
विवरण | Chrome Note Keeper: keep notes on specific websites pages. |
फ़ाइल का आकार | 31.8 KB |
स्थापना संख्या | 311 |
वर्तमान संस्करण | 1.0 |
अंतिम अपडेट | 2022-04-22 |
प्रकाशन तिथि | 2020-07-04 |
रेटिंग | 4.00/5 कुल 1 रेटिंग्स |
डेवलपर | Alessandro Pietrantonio |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/pietrantonio91/chrome-note-keeper |
सहायता पृष्ठ URL | https://alessandropietrantonio.it/ |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Chrome Note Keeper", "version": "1.0", "action": { "default_popup": "popup.html", "default_icon": { "16": "icons\/notekeeper16.png", "32": "icons\/notekeeper32.png", "64": "icons\/notekeeper64.png", "128": "icons\/notekeeper128.png" } }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/content.js" ], "run_at": "document_idle", "all_frames": true, "match_about_blank": true } ], "options_page": "options.html", "description": "Chrome Note Keeper: keep notes on specific websites pages.", "icons": { "16": "icons\/notekeeper16.png", "32": "icons\/notekeeper32.png", "64": "icons\/notekeeper64.png", "128": "icons\/notekeeper128.png" }, "background": { "service_worker": "js\/background.js" }, "manifest_version": 3, "permissions": [ "storage", "tabs" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } |