Powerlet
Quickly find and run your bookmarklets.
Cos'è Powerlet?
Powerlet è un'estensione di Chrome sviluppata da https://anthonycossins.com, e la sua funzione principale è "Quickly find and run your bookmarklets.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Powerlet
Scarica i file di estensione Powerlet in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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 Informazioni di Base sull'Estensione
| Nome | |
| ID | ofecodkcadbenmiknnidnfepbblapgkn |
| URL Ufficiale | https://chromewebstore.google.com/detail/powerlet/ofecodkcadbenmiknnidnfepbblapgkn |
| Descrizione | Quickly find and run your bookmarklets. |
| Dimensione del File | 105 KB |
| Conteggio Installazioni | 567 |
| Versione Corrente | 1.5.1 |
| Ultimo Aggiornamento | 2023-05-25 |
| Data di Pubblicazione | 2020-04-03 |
| Valutazione | 5.00/5 Totale 8 Valutazioni |
| Sviluppatore | https://anthonycossins.com |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | http://github.com/anthonyec/powerlet |
| URL della Pagina di Aiuto | https://github.com/anthonyec/powerlet/issues |
| URL della Pagina della Politica sulla Privacy | https://github.com/anthonyec/powerlet/blob/master/docs/privacy.md |
| Lingue Supportate | 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"
}
}
}
} | |