Custom Button

Customize a button.

O que é Custom Button?

Custom Button é uma extensão do Chrome desenvolvida por Rubén Martínez, e sua principal característica é "Customize a button.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Custom Button

Baixe arquivos de extensão Custom Button 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

                        Custom button it's just that, a button that you can customize with an URL and icon.

Features:
- Set a custom URL to open on click.
- Open in current tab, new tab, new window, new popup window or popup on button (this doesn't work with every site).
- Change the icon.
- Set the domains where it should work using a regular expression.
- Show notification when domain doesn't match.                    

Informações Básicas da Extensão

Nome Custom Button Custom Button
ID mphgmadkligoedhahoinkjghofkpmedf
URL Oficial https://chromewebstore.google.com/detail/custom-button/mphgmadkligoedhahoinkjghofkpmedf
Descrição Customize a button.
Tamanho do Arquivo 30.12 KB
Contagem de Instalações 2,896
Versão Atual 1.1.0
Última Atualização 2021-05-09
Data de Publicação 2019-02-03
Classificação 4.50/5 Total de 26 Avaliações
Desenvolvedor Rubén Martínez
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/rubenmv/chrome-extension-custom-button
URL da Página de Ajuda https://github.com/rubenmv/chrome-extension-custom-button/issues
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Custom Button",
    "short_name": "Custom Button",
    "description": "Customize a button.",
    "version": "1.1.0",
    "permissions": [
        "notifications",
        "storage",
        "tabs"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "browser_action": {
        "default_icon": {
            "38": "images\/default-32.png",
            "19": "images\/default-24.png"
        }
    },
    "icons": {
        "128": "images\/default-128.png",
        "48": "images\/default-64.png",
        "24": "images\/default-24.png"
    },
    "background": {
        "scripts": [
            "globals.js",
            "background.js"
        ]
    },
    "options_page": "options.html"
}