Tab Label

This extension allow you to rename tab title. This is very useful extension especially in case you have multiple tabs opened with…

Vad är Tab Label?

Tab Label är en Chrome-tillägg utvecklad av Unknown, och dess huvudfunktion är "This extension allow you to rename tab title. This is very useful extension especially in case you have multiple tabs opened with…".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Tab Label-förlängningens CRX-fil

Ladda ner Tab Label-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        This extension allow you to rename tab title. 

This is very useful extension especially in case you have multiple tabs opened with similar title. So you can make them more distinct by changing their title.                    

Grundläggande Information om Tillägg

Namn Tab Label Tab Label
ID jenllplbncahmaikpkppcikmfadialdk
Officiell webbadress https://chromewebstore.google.com/detail/tab-label/jenllplbncahmaikpkppcikmfadialdk
Beskrivning This extension allow you to rename tab title. This is very useful extension especially in case you have multiple tabs opened with…
Filstorlek 7.58 KB
Antal Installationer 252
Aktuell Version 0.0.1
Senast Uppdaterad 2020-04-28
Publiceringsdatum 2020-04-25
Betyg 2.14/5 Totalt 7 Betyg
Utvecklare Unknown
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Label",
    "version": "0.0.1",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "browser_action": {
        "default_icon": "icon_16.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab"
    ]
}