Tab Renamer

Customize the title of your chrome tabs

Qu'est-ce que Tab Renamer ?

Tab Renamer est une extension Chrome développée par Mujtaba Al-Tameemi, et sa fonction principale est "Customize the title of your chrome tabs".

Captures d'Écran de l'Extension

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

                        If you want to customize the title of your tabs, this extension is for you. 

There are 3 ways to use it:
1. Click on the extension's icon in the top right corner of your browser.
2. Use the shortcut "control/command + B".
3. Type "RN" in chrome's address bar and press tab.                    

Informations de Base sur l'Extension

Nom Tab Renamer Tab Renamer
ID npdnpkaiegjmocaekcdffkilfmfpedih
URL Officiel https://chromewebstore.google.com/detail/tab-renamer/npdnpkaiegjmocaekcdffkilfmfpedih
Description Customize the title of your chrome tabs
Taille du Fichier 13.15 KB
Nombre d'Installations 217
Version Actuelle 1.0.2
Dernière Mise à Jour 2016-12-24
Date de Publication 2016-12-23
Évaluation 2.89/5 Total 9 Évaluations
Développeur Mujtaba Al-Tameemi
Email [email protected]
Type de Paiement free
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Renamer",
    "short_name": "Tab Renamer",
    "author": "Mujtaba Al-Tameemi",
    "description": "Customize the title of your chrome tabs",
    "version": "1.0.2",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "omnibox": {
        "keyword": "rn"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+B",
                "mac": "Command+B"
            }
        }
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/16.png",
            "24": "icons\/24.png",
            "32": "icons\/32.png"
        },
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "tabs"
    ]
}