Lock Title
Lock tab title with a given text
什么是Lock Title?
Lock Title是由Ken开发的Chrome扩展程序,该扩展的主要功能是“Lock tab title with a given text”。
扩展截图
下载Lock Title扩展crx文件
下载Lock Title扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Lock tab title with a given string. The locked title doesn't change even if the tab loads the new page. You may find it useful when you want to name tabs by yourself to easily distinguish them, not by the original names. code available here https://github.com/imsut/locktitle
扩展基本信息
名称 | Lock Title |
ID | cjkldkjflehlglaenengohmjddgfhlec |
官方URL | https://chromewebstore.google.com/detail/lock-title/cjkldkjflehlglaenengohmjddgfhlec |
简介 | Lock tab title with a given text |
文件大小 | 30.45 KB |
安装次数 | 166 |
当前版本 | 1.0.0 |
更新时间 | 2015-12-31 |
上架时间 | 2015-12-31 |
评分 | 3.60/5 共5次评分 |
开发者 | Ken |
付费类型 | free |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Lock Title", "version": "1.0.0", "description": "Lock tab title with a given text", "icons": { "128": "folder_green_locked.png" }, "author": "Ken Kawamoto", "background": { "scripts": [ "background.js" ] }, "permissions": [ "tabs", "contextMenus", "http:\/\/*\/", "https:\/\/*\/" ], "commands": [] } |