Title changer
An extension that changes the title!
什么是Title changer?
Title changer是由lucasmorita开发的Chrome扩展程序,该扩展的主要功能是“An extension that changes the title!”。
扩展截图
下载Title changer扩展crx文件
下载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" } } } |