Title changer
An extension that changes the title!
Что такое Title changer?
Title changer - это расширение Chrome, разработанное lucasmorita, и его основная функция - "An extension that changes the title!".
Снимки экрана расширения
Скачать файл CRX расширения Title changer
Скачайте файлы расширений Title changer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | Title changer |
ID | ooocbkdokjcadckfeogdgingifpmnkfp |
Официальный URL | https://chromewebstore.google.com/detail/title-changer/ooocbkdokjcadckfeogdgingifpmnkfp |
Описание | An extension that changes the title! |
Размер файла | 8.66 KB |
Количество установок | 80 |
Текущая Версия | 0.0.1 |
Последнее Обновление | 2021-05-09 |
Дата публикации | 2021-05-09 |
Разработчик | lucasmorita |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | 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" } } } |