Powerlet

Quickly find and run your bookmarklets.

O que é Powerlet?

Powerlet é uma extensão do Chrome desenvolvida por https://anthonycossins.com, e sua principal característica é "Quickly find and run your bookmarklets.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Powerlet

Baixe arquivos de extensão Powerlet no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Powerlet Powerlet
ID ofecodkcadbenmiknnidnfepbblapgkn
URL Oficial https://chromewebstore.google.com/detail/powerlet/ofecodkcadbenmiknnidnfepbblapgkn
Descrição Quickly find and run your bookmarklets.
Tamanho do Arquivo 105 KB
Contagem de Instalações 567
Versão Atual 1.5.1
Última Atualização 2023-05-25
Data de Publicação 2020-04-03
Classificação 5.00/5 Total de 8 Avaliações
Desenvolvedor https://anthonycossins.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão http://github.com/anthonyec/powerlet
URL da Página de Ajuda https://github.com/anthonyec/powerlet/issues
URL da Página de Política de Privacidade https://github.com/anthonyec/powerlet/blob/master/docs/privacy.md
Idiomas Suportados 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"
            }
        }
    }
}