Simple Tab Renamer

A simple chrome tab renamer extension

What is Simple Tab Renamer?

Simple Tab Renamer is a Chrome extension developed by arshad, and its main feature is "A simple chrome tab renamer extension".

Extension Screenshots

screenshot

Download Simple Tab Renamer Extension CRX File

Download Simple Tab Renamer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Lets you rename the title of the any tab. Very handy when you feel your tab title need more descriptive or personalized names. 
Also, the title sticks to the tab even if you navigate to a different page within the same tab!
Note: This may not work on websites (Ex: chrome webstore, facebook etc) which do not get affected by this tab title change.                    

Extension Basic Information

Name Simple Tab Renamer Simple Tab Renamer
ID ailhpmlejogfdcpoflidmobgkgdemaog
Official URL https://chromewebstore.google.com/detail/simple-tab-renamer/ailhpmlejogfdcpoflidmobgkgdemaog
Description A simple chrome tab renamer extension
File Size 27.37 KB
Installation Count 14,055
Current Version 2.2
Last Updated 2022-06-02
Publish Date 2017-08-01
Rating 3.51/5 Total 59 Ratings
Developer arshad
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "2.2",
    "name": "Simple Tab Renamer",
    "description": "A simple chrome tab renamer extension",
    "browser_action": {
        "default_icon": ".\/styles\/extension_icon.png",
        "default_popup": "extension_content.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "icons": {
        "16": ".\/styles\/extension_icon.png",
        "48": ".\/styles\/extension_icon.png",
        "128": ".\/styles\/extension_icon.png"
    },
    "background": {
        "scripts": [
            "background_script.js"
        ]
    },
    "permissions": []
}