Title changer
An extension that changes the title!
What is Title changer?
Title changer is a Chrome extension developed by lucasmorita, and its main feature is "An extension that changes the title!".
Extension Screenshots
Download Title changer Extension CRX File
Download Title changer 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
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.
Extension Basic Information
Name | Title changer |
ID | ooocbkdokjcadckfeogdgingifpmnkfp |
Official URL | https://chromewebstore.google.com/detail/title-changer/ooocbkdokjcadckfeogdgingifpmnkfp |
Description | An extension that changes the title! |
File Size | 8.66 KB |
Installation Count | 80 |
Current Version | 0.0.1 |
Last Updated | 2021-05-09 |
Publish Date | 2021-05-09 |
Developer | lucasmorita |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } } } |