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 |
| Eメール | [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": [
" | |