Title changer

An extension that changes the title!

Co to jest Title changer?

Title changer to rozszerzenie Chrome opracowane przez lucasmorita, a jego główną funkcją jest „An extension that changes the title!”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Title changer

Pobierz pliki rozszerzeń Title changer 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

                        A simple extension that just changes the titles. When the popup shows up, just type whatever you want, and the title will be set. A personal project that helps me identifying what the tab has in its content.                    

Podstawowe informacje o rozszerzeniu

Nazwa Title changer Title changer
ID ooocbkdokjcadckfeogdgingifpmnkfp
Oficjalny URL https://chromewebstore.google.com/detail/title-changer/ooocbkdokjcadckfeogdgingifpmnkfp
Opis An extension that changes the title!
Rozmiar pliku 8.66 KB
Liczba instalacji 80
Aktualna Wersja 0.0.1
Ostatnia Aktualizacja 2021-05-09
Data Publikacji 2021-05-09
Deweloper lucasmorita
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Title changer",
    "version": "0.0.1",
    "description": "An extension that changes the title!",
    "background": {
        "service_worker": "background.js"
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+Home"
            }
        }
    },
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/pencil_logo.png",
            "32": "images\/pencil_logo.png",
            "48": "images\/pencil_logo.png",
            "128": "images\/pencil_logo.png"
        }
    }
}