Tab Modifier

Take control of your tabs

Qu'est-ce que Tab Modifier ?

Tab Modifier est une extension Chrome développée par chrome-webstore-publisher-furybee, et sa fonction principale est "Take control of your tabs".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Tab Modifier

Téléchargez les fichiers d'extension Tab Modifier 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

                        This extension is open-source! Contribute on https://github.com/sylouuu/chrome-tab-modifier

Take control of your tabs:

- Rename tab
- Change tab icon
- Pin tab
- Prevent tab closing
- Unique tab
- Mute tab

You have to define your rules from the Options page. Quick rename can be done by right-clicking anywhere in the page and click on "Rename Tab".

Changelog: https://github.com/sylouuu/chrome-tab-modifier/releases

About Permissions: All websites are required as the extension needs to update each visited website to do its job. I don't store anything about you, your rules are saved on your computer.

The Options page contains a Google Analytics script to help me to know how this page is used. It's totally anonymized. Feel free to contact me on the GitHub project.                    

Informations de Base sur l'Extension

Nom Tab Modifier Tab Modifier
ID hcbgadmbdkiilgpifjgcakjehmafcjai
URL Officiel https://chromewebstore.google.com/detail/tab-modifier/hcbgadmbdkiilgpifjgcakjehmafcjai
Description Take control of your tabs
Taille du Fichier 87.28 KB
Nombre d'Installations 80,000
Version Actuelle 0.22.0
Dernière Mise à Jour 2018-03-01
Date de Publication 2018-03-01
Évaluation 4.46/5 Total 331 Évaluations
Développeur chrome-webstore-publisher-furybee
Type de Paiement free
Site Web de l'Extension https://github.com/sylouuu/chrome-tab-modifier
URL de la Page d'Aide https://github.com/sylouuu/chrome-tab-modifier/issues
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Modifier",
    "version": "0.22.0",
    "description": "Take control of your tabs",
    "homepage_url": "https:\/\/github.com\/sylouuu\/chrome-tab-modifier",
    "icons": {
        "16": "img\/icon_16.png",
        "32": "img\/icon_32.png",
        "48": "img\/icon_48.png",
        "128": "img\/icon_128.png"
    },
    "browser_action": {
        "default_icon": "img\/icon_48.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com https:\/\/www.google-analytics.com; object-src 'self'",
    "options_page": "html\/options.html",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "img\/*"
    ],
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "tabs",
        "storage",
        "contextMenus"
    ]
}