Cohost Tag Groups

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

O que é Cohost Tag Groups?

Cohost Tag Groups é uma extensão do Chrome desenvolvida por AmyPercent, e sua principal característica é "Adds the ability to conveniently add multiple related tags to a Cohost post.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Cohost Tag Groups

Baixe arquivos de extensão Cohost Tag Groups no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Cohost Tag Groups Cohost Tag Groups
ID habpkepemnohglcekmjnjnbpphmkhnhi
URL Oficial https://chromewebstore.google.com/detail/cohost-tag-groups/habpkepemnohglcekmjnjnbpphmkhnhi
Descrição Adds the ability to conveniently add multiple related tags to a Cohost post.
Tamanho do Arquivo 9.79 KB
Contagem de Instalações 49
Versão Atual 1.8
Última Atualização 2023-09-09
Data de Publicação 2023-04-23
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor AmyPercent
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://cohost.org/amypercent
Idiomas Suportados 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]"
        }
    }
}