Powerlet
Quickly find and run your bookmarklets.
什么是Powerlet?
Powerlet是由https://anthonycossins.com开发的Chrome扩展程序,该扩展的主要功能是“Quickly find and run your bookmarklets.”。
扩展截图
下载Powerlet扩展crx文件
下载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" } } } } |