Cohost Tag Groups

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

什么是Cohost Tag Groups?

Cohost Tag Groups是由AmyPercent开发的Chrome扩展程序,该扩展的主要功能是“Adds the ability to conveniently add multiple related tags to a Cohost post.”。

扩展截图

screenshot

下载Cohost Tag Groups扩展crx文件

下载Cohost Tag Groups扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Cohost Tag Groups Cohost Tag Groups
ID habpkepemnohglcekmjnjnbpphmkhnhi
官方URL https://chromewebstore.google.com/detail/cohost-tag-groups/habpkepemnohglcekmjnjnbpphmkhnhi
简介 Adds the ability to conveniently add multiple related tags to a Cohost post.
文件大小 9.79 KB
安装次数 49
当前版本 1.8
更新时间 2023-09-09
上架时间 2023-04-23
评分 5.00/5 共2次评分
开发者 AmyPercent
电子邮箱 [email protected]
付费类型 free
扩展官网 https://cohost.org/amypercent
支持的语言 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]"
        }
    }
}