Tab Titler 2.0

Tab Titler 2.0

Tab Titler 2.0 क्या है?

Tab Titler 2.0 Tim द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Tab Titler 2.0"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Tab Titler 2.0 एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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!                    

एक्सटेंशन की मूल जानकारी

नाम Tab Titler 2.0 Tab Titler 2.0
ID aolhnnheicpbohggibkibdmfdkmkaocc
आधिकारिक URL https://chromewebstore.google.com/detail/tab-titler-20/aolhnnheicpbohggibkibdmfdkmkaocc
विवरण Tab Titler 2.0
फ़ाइल का आकार 42.11 KB
स्थापना संख्या 234
वर्तमान संस्करण 1.0
अंतिम अपडेट 2019-02-02
प्रकाशन तिथि 2019-01-29
रेटिंग 4.33/5 कुल 3 रेटिंग्स
डेवलपर Tim
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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
    }
}