Simple Tab Renamer

A simple chrome tab renamer extension

Cos'è Simple Tab Renamer?

Simple Tab Renamer è un'estensione di Chrome sviluppata da arshad, e la sua funzione principale è "A simple chrome tab renamer extension".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Simple Tab Renamer

Scarica i file di estensione Simple Tab Renamer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Lets you rename the title of the any tab. Very handy when you feel your tab title need more descriptive or personalized names. 
Also, the title sticks to the tab even if you navigate to a different page within the same tab!
Note: This may not work on websites (Ex: chrome webstore, facebook etc) which do not get affected by this tab title change.                    

Informazioni di Base sull'Estensione

Nome Simple Tab Renamer Simple Tab Renamer
ID ailhpmlejogfdcpoflidmobgkgdemaog
URL Ufficiale https://chromewebstore.google.com/detail/simple-tab-renamer/ailhpmlejogfdcpoflidmobgkgdemaog
Descrizione A simple chrome tab renamer extension
Dimensione del File 27.37 KB
Conteggio Installazioni 14,055
Versione Corrente 2.2
Ultimo Aggiornamento 2022-06-02
Data di Pubblicazione 2017-08-01
Valutazione 3.51/5 Totale 59 Valutazioni
Sviluppatore arshad
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "2.2",
    "name": "Simple Tab Renamer",
    "description": "A simple chrome tab renamer extension",
    "browser_action": {
        "default_icon": ".\/styles\/extension_icon.png",
        "default_popup": "extension_content.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "icons": {
        "16": ".\/styles\/extension_icon.png",
        "48": ".\/styles\/extension_icon.png",
        "128": ".\/styles\/extension_icon.png"
    },
    "background": {
        "scripts": [
            "background_script.js"
        ]
    },
    "permissions": []
}