Tab Renamer

Take control of your tabs

Qu'est-ce que Tab Renamer ?

Tab Renamer est une extension Chrome développée par Elon Z, 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 Renamer

Téléchargez les fichiers d'extension Tab Renamer 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 is a fork version of Tab Modifier with more features/bugfix.
1. [New Feature] Support unique rules by url,
2. [New Feature] Disable a rule temporarily,
3. [New Feature] Allow to hide right-click menu item.
4. [Bug Fix] Selector grammar not working when element is lazy-loaded.                    

Informations de Base sur l'Extension

Nom Tab Renamer Tab Renamer
ID kpijejpdbpeaakidlcopnbjohbfimnod
URL Officiel https://chromewebstore.google.com/detail/tab-renamer/kpijejpdbpeaakidlcopnbjohbfimnod
Description Take control of your tabs
Taille du Fichier 98.48 KB
Nombre d'Installations 238
Version Actuelle 0.23.0
Dernière Mise à Jour 2021-02-28
Date de Publication 2021-02-27
Évaluation 3.50/5 Total 2 Évaluations
Développeur Elon Z
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/imageslr/chrome-tab-modifier
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Renamer",
    "version": "0.23.0",
    "description": "Take control of your tabs",
    "homepage_url": "https:\/\/github.com\/imageslr\/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",
        "alarms",
        "notifications"
    ]
}