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 擴展基本資訊
| 名稱 | |
| ID | ofecodkcadbenmiknnidnfepbblapgkn |
| 官方網址 | 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"
}
}
}
} | |