Tab Renamer

Customize the title of your chrome tabs

Tab Renamer là gì?

Tab Renamer là một tiện ích mở rộng Chrome được phát triển bởi Mujtaba Al-Tameemi, và tính năng chính của nó là "Customize the title of your chrome tabs".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Tab Renamer

Tải xuống các tệp mở rộng Tab Renamer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        If you want to customize the title of your tabs, this extension is for you. 

There are 3 ways to use it:
1. Click on the extension's icon in the top right corner of your browser.
2. Use the shortcut "control/command + B".
3. Type "RN" in chrome's address bar and press tab.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Tab Renamer Tab Renamer
ID npdnpkaiegjmocaekcdffkilfmfpedih
URL Chính Thức https://chromewebstore.google.com/detail/tab-renamer/npdnpkaiegjmocaekcdffkilfmfpedih
Mô tả Customize the title of your chrome tabs
Kích Thước Tệp 13.15 KB
Số Lần Cài Đặt 217
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2016-12-24
Ngày Phát Hành 2016-12-23
Đánh Giá 2.89/5 Tổng số 9 Đánh Giá
Nhà Phát Triển Mujtaba Al-Tameemi
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Renamer",
    "short_name": "Tab Renamer",
    "author": "Mujtaba Al-Tameemi",
    "description": "Customize the title of your chrome tabs",
    "version": "1.0.2",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "omnibox": {
        "keyword": "rn"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+B",
                "mac": "Command+B"
            }
        }
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/16.png",
            "24": "icons\/24.png",
            "32": "icons\/32.png"
        },
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "tabs"
    ]
}