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 هو إضافة Chrome تم تطويرها بواسطة 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 للإضافة StickyNotes
قم بتنزيل ملفات الامتداد StickyNotes بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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/ |
عنوان صفحة المساعدة | 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" ] } |