Cohost Tag Groups
Adds the ability to conveniently add multiple related tags to a Cohost post.
Cohost Tag Groupsคืออะไร?
Cohost Tag Groups เป็นส่วนขยายของ Chrome ที่พัฒนาโดย AmyPercent และคุณลักษณะหลักของมันคือ "Adds the ability to conveniently add multiple related tags to a Cohost post."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Cohost Tag Groups
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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]" } } } |