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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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 |
URL หน้าช่วยเหลือ | https://github.com/anthonyec/powerlet/issues |
URL หน้านโยบายความเป็นส่วนตัว | 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" } } } } |