Tab Titler 2.0

Tab Titler 2.0

Vad är Tab Titler 2.0?

Tab Titler 2.0 är en Chrome-tillägg utvecklad av Tim, och dess huvudfunktion är "Tab Titler 2.0".

Tilläggsskärmbilder

screenshot

Ladda ner Tab Titler 2.0-förlängningens CRX-fil

Ladda ner Tab Titler 2.0-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 lets you change the title of a tab on the go and manage them over time.

Press ALT + SHIFT + S to automatically begin renaming a tab. 
Renames will persist and last for as long as you want! 
View the options page to manage all your saved tab aliases. 

Browser to Browser Renaming - if you're logged into Chrome your saved names come with you!

Its dead simple. No extra fluff and no unnecessary banter - it does the job and the way you want it done!                    

Grundläggande Information om Tillägg

Namn Tab Titler 2.0 Tab Titler 2.0
ID aolhnnheicpbohggibkibdmfdkmkaocc
Officiell webbadress https://chromewebstore.google.com/detail/tab-titler-20/aolhnnheicpbohggibkibdmfdkmkaocc
Beskrivning Tab Titler 2.0
Filstorlek 42.11 KB
Antal Installationer 234
Aktuell Version 1.0
Senast Uppdaterad 2019-02-02
Publiceringsdatum 2019-01-29
Betyg 4.33/5 Totalt 3 Betyg
Utvecklare Tim
E-post [email protected]
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Titler 2.0",
    "version": "1.0",
    "description": "Tab Titler 2.0",
    "icons": {
        "16": "tab16.png",
        "48": "tab48.png",
        "128": "tab128.png"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "main.js"
            ]
        }
    ],
    "commands": {
        "rename_tab": {
            "suggested_key": {
                "default": "Alt+Shift+S"
            },
            "description": "Save a Tab Name"
        }
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    }
}