Custom Button

Customize a button.

Qu'est-ce que Custom Button ?

Custom Button est une extension Chrome développée par Rubén Martínez, et sa fonction principale est "Customize a button.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Custom Button

Téléchargez les fichiers d'extension Custom Button au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Custom Button Custom Button
ID mphgmadkligoedhahoinkjghofkpmedf
URL Officiel https://chromewebstore.google.com/detail/custom-button/mphgmadkligoedhahoinkjghofkpmedf
Description Customize a button.
Taille du Fichier 30.12 KB
Nombre d'Installations 2,896
Version Actuelle 1.1.0
Dernière Mise à Jour 2021-05-09
Date de Publication 2019-02-03
Évaluation 4.50/5 Total 26 Évaluations
Développeur Rubén Martínez
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/rubenmv/chrome-extension-custom-button
URL de la Page d'Aide https://github.com/rubenmv/chrome-extension-custom-button/issues
Langues Prises en Charge 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"
}