Tab Renamer

Customize the title of your chrome tabs

Co to jest Tab Renamer?

Tab Renamer to rozszerzenie Chrome opracowane przez Mujtaba Al-Tameemi, a jego główną funkcją jest „Customize the title of your chrome tabs”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Tab Renamer

Pobierz pliki rozszerzeń Tab Renamer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Tab Renamer Tab Renamer
ID npdnpkaiegjmocaekcdffkilfmfpedih
Oficjalny URL https://chromewebstore.google.com/detail/tab-renamer/npdnpkaiegjmocaekcdffkilfmfpedih
Opis Customize the title of your chrome tabs
Rozmiar pliku 13.15 KB
Liczba instalacji 217
Aktualna Wersja 1.0.2
Ostatnia Aktualizacja 2016-12-24
Data Publikacji 2016-12-23
Ocena 2.89/5 Łącznie 9 Oceny
Deweloper Mujtaba Al-Tameemi
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    ]
}