StickyNotes
Put sticky notes on the web page. Write a note on it. Jump to it. And sync stickies between devices. (chrome, firefox, firefox for…
StickyNotes क्या है?
StickyNotes kumabook द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Put sticky notes on the web page. Write a note on it. Jump to it. And sync stickies between devices. (chrome, firefox, firefox for…"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में StickyNotes एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Put sticky notes on the web page. Write a note on it. Jump to it. And sync stickies between devices. (chrome, firefox, firefox for android, ios app)
एक्सटेंशन की मूल जानकारी
नाम | |
ID | imcecnigpdchlakcljkjjhddmilnmcji |
आधिकारिक URL | https://chrome.google.com/webstore/detail/stickynotes/imcecnigpdchlakcljkjjhddmilnmcji |
विवरण | Put sticky notes on the web page. Write a note on it. Jump to it. And sync stickies between devices. (chrome, firefox, firefox for… |
फ़ाइल का आकार | 1.23 MB |
स्थापना संख्या | 694 |
वर्तमान संस्करण | 1.2.4 |
अंतिम अपडेट | 2019-05-20 |
प्रकाशन तिथि | 2019-05-20 |
रेटिंग | 5.00/5 कुल 3 रेटिंग्स |
डेवलपर | kumabook |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | http://kumabook.github.io/stickynotes/ |
सहायता पृष्ठ URL | https://github.com/kumabook/stickynotes/issues |
समर्थित भाषाएँ | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "StickyNotes", "version": "1.2.4", "manifest_version": 2, "applications": { "gecko": { "id": "[email protected]" } }, "permissions": [ "contextMenus", "storage", "notifications", "tabs", "activeTab", "webNavigation", "*:\/\/stickynotes.kumabook.tokyo\/*" ], "background": { "scripts": [ "background\/bundle.js" ] }, "default_locale": "en", "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "match_about_blank": true, "css": [ "content_scripts\/sticky-view.css" ], "js": [ "content_scripts\/bundle.js" ] } ], "options_ui": { "page": "options_ui\/index.html" }, "browser_action": { "browser_style": true, "default_icon": "icons\/icon-32.png", "default_title": "StickyNotes", "default_popup": "popup\/index.html" }, "sidebar_action": { "default_icon": "icons\/icon-32.png", "default_title": "StickyNotes", "default_panel": "sidebar\/index.html" }, "commands": { "_execute_sidebar_action": { "suggested_key": { "default": "Ctrl+Shift+S", "mac": "MacCtrl+Shift+S" }, "description": "Show stickies on sidebar" }, "create_sticky": { "suggested_key": { "default": "Ctrl+Shift+C", "mac": "MacCtrl+Shift+C" }, "description": "Create a sticky in active tab" }, "toggle_stickies": { "suggested_key": { "default": "Ctrl+Q", "mac": "MacCtrl+Q" }, "description": "Toggle visiblities of stickies in active tab" } }, "web_accessible_resources": [ "content_scripts\/delete.png", "content_scripts\/delete-hover.png", "content_scripts\/menu.png", "content_scripts\/menu-hover.png", "content_scripts\/edit-tag.png", "content_scripts\/edit-tag-hover.png", "content_scripts\/minimize.png", "content_scripts\/minimize-hover.png", "content_scripts\/color.png", "content_scripts\/page-option.png", "content_scripts\/back.png", "content_scripts\/close.png" ] } |