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. 擴展基本資訊
| 名稱 | |
| ID | ooocbkdokjcadckfeogdgingifpmnkfp |
| 官方網址 | 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"
}
}
} | |