Cohost Tag Groups

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

Cos'è Cohost Tag Groups?

Cohost Tag Groups è un'estensione di Chrome sviluppata da AmyPercent, e la sua funzione principale è "Adds the ability to conveniently add multiple related tags to a Cohost post.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Cohost Tag Groups

Scarica i file di estensione Cohost Tag Groups in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Cohost Tag Groups Cohost Tag Groups
ID habpkepemnohglcekmjnjnbpphmkhnhi
URL Ufficiale https://chromewebstore.google.com/detail/cohost-tag-groups/habpkepemnohglcekmjnjnbpphmkhnhi
Descrizione Adds the ability to conveniently add multiple related tags to a Cohost post.
Dimensione del File 9.79 KB
Conteggio Installazioni 49
Versione Corrente 1.8
Ultimo Aggiornamento 2023-09-09
Data di Pubblicazione 2023-04-23
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore AmyPercent
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://cohost.org/amypercent
Lingue Supportate 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]"
        }
    }
}