Powerlet
Quickly find and run your bookmarklets.
Powerlet là gì?
Powerlet là một tiện ích mở rộng Chrome được phát triển bởi https://anthonycossins.com, và tính năng chính của nó là "Quickly find and run your bookmarklets.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Powerlet
Tải xuống các tệp mở rộng Powerlet dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Powerlet |
ID | ofecodkcadbenmiknnidnfepbblapgkn |
URL Chính Thức | https://chromewebstore.google.com/detail/powerlet/ofecodkcadbenmiknnidnfepbblapgkn |
Mô tả | Quickly find and run your bookmarklets. |
Kích Thước Tệp | 105 KB |
Số Lần Cài Đặt | 567 |
Phiên Bản Hiện Tại | 1.5.1 |
Cập Nhật Lần Cuối | 2023-05-25 |
Ngày Phát Hành | 2020-04-03 |
Đánh Giá | 5.00/5 Tổng số 8 Đánh Giá |
Nhà Phát Triển | https://anthonycossins.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://github.com/anthonyec/powerlet |
URL Trang Trợ Giúp | https://github.com/anthonyec/powerlet/issues |
URL Trang Chính Sách Bảo Mật | https://github.com/anthonyec/powerlet/blob/master/docs/privacy.md |
Ngôn Ngữ Được Hỗ Trợ | 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" } } } } |