Tab Modifier

Take control of your tabs

Tab Modifier क्या है?

Tab Modifier chrome-webstore-publisher-furybee द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Take control of your tabs"।

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

screenshot
screenshot
screenshot

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

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

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

                        This extension is open-source! Contribute on https://github.com/sylouuu/chrome-tab-modifier

Take control of your tabs:

- Rename tab
- Change tab icon
- Pin tab
- Prevent tab closing
- Unique tab
- Mute tab

You have to define your rules from the Options page. Quick rename can be done by right-clicking anywhere in the page and click on "Rename Tab".

Changelog: https://github.com/sylouuu/chrome-tab-modifier/releases

About Permissions: All websites are required as the extension needs to update each visited website to do its job. I don't store anything about you, your rules are saved on your computer.

The Options page contains a Google Analytics script to help me to know how this page is used. It's totally anonymized. Feel free to contact me on the GitHub project.                    

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

नाम Tab Modifier Tab Modifier
ID hcbgadmbdkiilgpifjgcakjehmafcjai
आधिकारिक URL https://chromewebstore.google.com/detail/tab-modifier/hcbgadmbdkiilgpifjgcakjehmafcjai
विवरण Take control of your tabs
फ़ाइल का आकार 87.28 KB
स्थापना संख्या 80,000
वर्तमान संस्करण 0.22.0
अंतिम अपडेट 2018-03-01
प्रकाशन तिथि 2018-03-01
रेटिंग 4.46/5 कुल 331 रेटिंग्स
डेवलपर chrome-webstore-publisher-furybee
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/sylouuu/chrome-tab-modifier
सहायता पृष्ठ URL https://github.com/sylouuu/chrome-tab-modifier/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Modifier",
    "version": "0.22.0",
    "description": "Take control of your tabs",
    "homepage_url": "https:\/\/github.com\/sylouuu\/chrome-tab-modifier",
    "icons": {
        "16": "img\/icon_16.png",
        "32": "img\/icon_32.png",
        "48": "img\/icon_48.png",
        "128": "img\/icon_128.png"
    },
    "browser_action": {
        "default_icon": "img\/icon_48.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com https:\/\/www.google-analytics.com; object-src 'self'",
    "options_page": "html\/options.html",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "img\/*"
    ],
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "tabs",
        "storage",
        "contextMenus"
    ]
}