Powerlet
Quickly find and run your bookmarklets.
ما هو Powerlet؟
Powerlet هو إضافة Chrome تم تطويرها بواسطة https://anthonycossins.com، والميزة الرئيسية لها هي "Quickly find and run your bookmarklets.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Powerlet
قم بتنزيل ملفات الامتداد Powerlet بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Powerlet gives you quick keyboard access to your bookmarklets. Features: - Search for JS scripts found in your bookmarks - Add, edit and remove bookmarklets - Keyboard navigation - Supports dark mode, the icon and theme will update automatically - Translated to English and Japanese How to use: - Press CMD + SHIFT + K on Mac or CTRL + SHIFT + K on Windows to show Powerlet - Start typing to filter out bookmarklet scripts and press enter to run them on the current page
معلومات أساسية عن التمديد
الاسم | Powerlet |
ID | ofecodkcadbenmiknnidnfepbblapgkn |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/powerlet/ofecodkcadbenmiknnidnfepbblapgkn |
الوصف | Quickly find and run your bookmarklets. |
حجم الملف | 105 KB |
عدد التثبيتات | 567 |
النسخة الحالية | 1.5.1 |
آخر تحديث | 2023-05-25 |
تاريخ النشر | 2020-04-03 |
تقييم | 5.00/5 مجموع تقييمات 8 |
المطور | https://anthonycossins.com |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | http://github.com/anthonyec/powerlet |
عنوان صفحة المساعدة | https://github.com/anthonyec/powerlet/issues |
عنوان صفحة سياسة الخصوصية | https://github.com/anthonyec/powerlet/blob/master/docs/privacy.md |
اللغات المدعومة | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Powerlet", "version": "1.5.1", "description": "Quickly find and run your bookmarklets.", "permissions": [ "activeTab", "bookmarks" ], "default_locale": "en", "background": { "scripts": [ "background.bundle.js" ], "persistent": false }, "browser_action": { "default_popup": "popup.html", "default_icon": { "19": "default_icon.png", "38": "[email protected]" } }, "icons": { "36": "extension_icon_36.png", "128": "extension_icon_128.png" }, "commands": { "_execute_browser_action": { "suggested_key": { "windows": "Ctrl+Shift+K", "mac": "Command+Shift+K", "chromeos": "Ctrl+Shift+K", "linux": "Ctrl+Shift+K" } } } } |