Powerlet

Quickly find and run your bookmarklets.

¿Qué es Powerlet?

Powerlet es una extensión de Chrome desarrollada por https://anthonycossins.com, y su función principal es "Quickly find and run your bookmarklets.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Powerlet

Descarga archivos de extensión Powerlet en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Powerlet Powerlet
ID ofecodkcadbenmiknnidnfepbblapgkn
URL Oficial https://chromewebstore.google.com/detail/powerlet/ofecodkcadbenmiknnidnfepbblapgkn
Descripción Quickly find and run your bookmarklets.
Tamaño del Archivo 105 KB
Cantidad de Instalaciones 567
Versión Actual 1.5.1
Última Actualización 2023-05-25
Fecha de Publicación 2020-04-03
Calificación 5.00/5 Total de 8 Calificaciones
Desarrollador https://anthonycossins.com
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión http://github.com/anthonyec/powerlet
URL de la Página de Ayuda https://github.com/anthonyec/powerlet/issues
URL de la Página de Política de Privacidad https://github.com/anthonyec/powerlet/blob/master/docs/privacy.md
Idiomas Soportados 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"
            }
        }
    }
}