Cohost Tag Groups

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

Wat is Cohost Tag Groups?

Cohost Tag Groups is een Chrome-extensie ontwikkeld door AmyPercent, en de belangrijkste functie is "Adds the ability to conveniently add multiple related tags to a Cohost post.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Cohost Tag Groups

Download Cohost Tag Groups-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Cohost Tag Groups Cohost Tag Groups
ID habpkepemnohglcekmjnjnbpphmkhnhi
Officiële URL https://chromewebstore.google.com/detail/cohost-tag-groups/habpkepemnohglcekmjnjnbpphmkhnhi
Beschrijving Adds the ability to conveniently add multiple related tags to a Cohost post.
Bestandsgrootte 9.79 KB
Aantal Installaties 49
Huidige Versie 1.8
Laatst Bijgewerkt 2023-09-09
Publicatiedatum 2023-04-23
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar AmyPercent
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://cohost.org/amypercent
Ondersteunde Talen 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]"
        }
    }
}