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
官方網址 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]"
        }
    }
}