NoteIt
This extension allows you to add notes to any web page!
NoteIt क्या है?
NoteIt ybenz द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension allows you to add notes to any web page!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में NoteIt एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Smart notes for the web. Note-it is a Chrome extension that let's you create sticky notes on any web page, next time you visit that page your notes will be there at the exact same position. - Simple and intuitive interface. - You can resize/drag a note as you like. - You can select from multiple colors.
एक्सटेंशन की मूल जानकारी
नाम | NoteIt |
ID | ldfacjglncaooacfoiikhphjmbobimij |
आधिकारिक URL | https://chromewebstore.google.com/detail/noteit/ldfacjglncaooacfoiikhphjmbobimij |
विवरण | This extension allows you to add notes to any web page! |
फ़ाइल का आकार | 2.19 MB |
स्थापना संख्या | 1,033 |
वर्तमान संस्करण | 0.1 |
अंतिम अपडेट | 2017-01-16 |
प्रकाशन तिथि | 2017-01-16 |
रेटिंग | 2.75/5 कुल 8 रेटिंग्स |
डेवलपर | ybenz |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "NoteIt", "description": "This extension allows you to add notes to any web page!", "version": "0.1", "browser_action": { "default_icon": "images\/logo-16.png", "default_title": "Note It" }, "icons": { "128": "images\/logo-128.png", "16": "images\/logo-16.png", "32": "images\/logo-32.png", "48": "images\/logo-48.png" }, "background": { "page": "background.html" }, "permissions": [ "activeTab", "storage" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "jquery-ui\/themes\/smoothness\/jquery-ui-custom.css", "css\/fonts.css", "css\/main.css" ], "js": [ "js\/jquery.js", "jquery-ui\/jquery-ui.min.js", "js\/moment.js", "js\/index.js" ], "run_at": "document_idle" } ], "web_accessible_resources": [ "css\/*", "js\/*", "images\/*", "jquery-ui\/*", "fonts\/*.woff2" ] } |