Cohost Tag Groups

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

Cohost Tag Groups क्या है?

Cohost Tag Groups AmyPercent द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds the ability to conveniently add multiple related tags to a Cohost post."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Cohost Tag Groups एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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]"
        }
    }
}