Powerlet
Quickly find and run your bookmarklets.
Was ist Powerlet?
Powerlet ist eine Chrome-Erweiterung, die von https://anthonycossins.com entwickelt wurde, und ihr Hauptmerkmal ist "Quickly find and run your bookmarklets.".
Erweiterungsscreenshots
Powerlet-Erweiterungs-CRX-Datei herunterladen
Laden Sie Powerlet-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | ofecodkcadbenmiknnidnfepbblapgkn |
| Offizielle URL | https://chromewebstore.google.com/detail/powerlet/ofecodkcadbenmiknnidnfepbblapgkn |
| Beschreibung | Quickly find and run your bookmarklets. |
| Dateigröße | 105 KB |
| Installationsanzahl | 567 |
| Aktuelle Version | 1.5.1 |
| Letztes Update | 2023-05-25 |
| Veröffentlichungsdatum | 2020-04-03 |
| Bewertung | 5.00/5 Insgesamt 8 Bewertungen |
| Entwickler | https://anthonycossins.com |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | http://github.com/anthonyec/powerlet |
| Hilfeseite URL | https://github.com/anthonyec/powerlet/issues |
| URL der Datenschutzrichtlinien-Seite | https://github.com/anthonyec/powerlet/blob/master/docs/privacy.md |
| Unterstützte Sprachen | 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"
}
}
}
} | |