Tab Rename

Adds the ability to change the title of your tabs

Tab Rename क्या है?

Tab Rename Realyze द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds the ability to change the title of your tabs"।

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

screenshot
screenshot

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

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

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

                        This is a simple extension to rename the active tab.

It works by changing the title attribute of the DOM.                    

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

नाम Tab Rename Tab Rename
ID lgoehggcekcijojdfdifnfknonmeillp
आधिकारिक URL https://chromewebstore.google.com/detail/tab-rename/lgoehggcekcijojdfdifnfknonmeillp
विवरण Adds the ability to change the title of your tabs
फ़ाइल का आकार 12.24 KB
स्थापना संख्या 551
वर्तमान संस्करण 1.0
अंतिम अपडेट 2021-02-23
प्रकाशन तिथि 2021-02-22
रेटिंग 3.17/5 कुल 6 रेटिंग्स
डेवलपर Realyze
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tab Rename",
    "description": "Adds the ability to change the title of your tabs",
    "version": "1.0",
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "tabs"
    ],
    "icons": {
        "16": "icons\/tag16.png",
        "48": "icons\/pen-icon48.png",
        "128": "icons\/pen-icon128.png"
    },
    "browser_action": {
        "default_icon": "icons\/tag16.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "rename.js"
        ]
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+R"
            }
        }
    }
}