Website Tagger
Tag websites on various conditions for easy recognition
什么是Website Tagger?
Website Tagger是由Kushagra Gour开发的Chrome扩展程序,该扩展的主要功能是“Tag websites on various conditions for easy recognition”。
扩展截图
下载Website Tagger扩展crx文件
下载Website Tagger扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Let's say:
- You want to tag your staging and product environments differently
- You want to tag your app differently when logged into a customer's account for debugging
- You want to tag websites when they are using a certain thing in the HTML. May be they are using your library!
This extension is just for you! 扩展基本信息
| 名称 | |
| ID | mnafbagbhobbimnofgdibonhjidgildh |
| 官方URL | https://chromewebstore.google.com/detail/website-tagger/mnafbagbhobbimnofgdibonhjidgildh |
| 简介 | Tag websites on various conditions for easy recognition |
| 文件大小 | 25.35 KB |
| 安装次数 | 28 |
| 当前版本 | 1.2 |
| 更新时间 | 2020-05-17 |
| 上架时间 | 2020-05-17 |
| 开发者 | Kushagra Gour |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"description": "Tag websites on various conditions for easy recognition",
"manifest_version": 2,
"name": "Website Tagger",
"version": "1.2",
"browser_action": {
"default_icon": "logo-64.png",
"default_popup": "popup.html",
"browser_style": true
},
"icons": {
"16": "logo-64.png",
"48": "logo-64.png",
"128": "logo-128.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"inject.js"
]
}
],
"permissions": [
" | |