Cohost Tag Groups
Adds the ability to conveniently add multiple related tags to a Cohost post.
Cohost Tag Groupsとは何ですか?
Cohost Tag GroupsはAmyPercentによって開発されたChromeの拡張機能で、その主な機能は「Adds the ability to conveniently add multiple related tags to a Cohost post.」です。
拡張機能のスクリーンショット
Cohost Tag Groups拡張機能のCRXファイルをダウンロード
Cohost Tag Groups拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
In the options page for this extension, you can add keys and values. Keys correspond to tags that you will manually enter, and values correspond to tags that will automatically be added by the extension when creating or editing posts.
拡張機能の基本情報
名前 | Cohost Tag Groups |
ID | habpkepemnohglcekmjnjnbpphmkhnhi |
公式URL | https://chromewebstore.google.com/detail/cohost-tag-groups/habpkepemnohglcekmjnjnbpphmkhnhi |
説明 | Adds the ability to conveniently add multiple related tags to a Cohost post. |
ファイルサイズ | 9.79 KB |
インストール数 | 49 |
現在のバージョン | 1.8 |
最終更新日 | 2023-09-09 |
公開日 | 2023-04-23 |
評価 | 5.00/5 合計 2 レビュー |
開発者 | AmyPercent |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://cohost.org/amypercent |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Cohost Tag Groups", "version": "1.8", "description": "Adds the ability to conveniently add multiple related tags to a Cohost post.", "icons": { "16": "icons\/eggbug-wizard-16.png", "32": "icons\/eggbug-wizard-32.png", "48": "icons\/eggbug-wizard-48.png", "96": "icons\/eggbug-wizard-96.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.cohost.org\/*" ], "js": [ "tag-groups.js" ] } ], "options_ui": { "page": "options.html", "open_in_tab": true, "browser_style": true }, "permissions": [ "storage" ], "browser_specific_settings": { "gecko": { "id": "[email protected]" } } } |