Cohost Tag Groups

Adds the ability to conveniently add multiple related tags to a Cohost post.

What is Cohost Tag Groups?

Cohost Tag Groups is a Chrome extension developed by AmyPercent, and its main feature is "Adds the ability to conveniently add multiple related tags to a Cohost post.".

Extension Screenshots

screenshot

Download Cohost Tag Groups Extension CRX File

Download Cohost Tag Groups extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Cohost Tag Groups Cohost Tag Groups
ID habpkepemnohglcekmjnjnbpphmkhnhi
Official URL https://chromewebstore.google.com/detail/cohost-tag-groups/habpkepemnohglcekmjnjnbpphmkhnhi
Description Adds the ability to conveniently add multiple related tags to a Cohost post.
File Size 9.79 KB
Installation Count 49
Current Version 1.8
Last Updated 2023-09-09
Publish Date 2023-04-23
Rating 5.00/5 Total 2 Ratings
Developer AmyPercent
Email [email protected]
Payment Type free
Extension Website https://cohost.org/amypercent
Supported Languages 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]"
        }
    }
}