Cohost Tag Groups

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

Was ist Cohost Tag Groups?

Cohost Tag Groups ist eine Chrome-Erweiterung, die von AmyPercent entwickelt wurde, und ihr Hauptmerkmal ist "Adds the ability to conveniently add multiple related tags to a Cohost post.".

Erweiterungsscreenshots

screenshot

Cohost Tag Groups-Erweiterungs-CRX-Datei herunterladen

Laden Sie Cohost Tag Groups-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Cohost Tag Groups Cohost Tag Groups
ID habpkepemnohglcekmjnjnbpphmkhnhi
Offizielle URL https://chromewebstore.google.com/detail/cohost-tag-groups/habpkepemnohglcekmjnjnbpphmkhnhi
Beschreibung Adds the ability to conveniently add multiple related tags to a Cohost post.
Dateigröße 9.79 KB
Installationsanzahl 49
Aktuelle Version 1.8
Letztes Update 2023-09-09
Veröffentlichungsdatum 2023-04-23
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler AmyPercent
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://cohost.org/amypercent
Unterstützte Sprachen 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]"
        }
    }
}