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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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]" } } } |