Cohost Tag Groups

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

Cohost Tag Groups là gì?

Cohost Tag Groups là một tiện ích mở rộng Chrome được phát triển bởi AmyPercent, và tính năng chính của nó là "Adds the ability to conveniently add multiple related tags to a Cohost post.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Cohost Tag Groups

Tải xuống các tệp mở rộng Cohost Tag Groups dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Cohost Tag Groups Cohost Tag Groups
ID habpkepemnohglcekmjnjnbpphmkhnhi
URL Chính Thức https://chromewebstore.google.com/detail/cohost-tag-groups/habpkepemnohglcekmjnjnbpphmkhnhi
Mô tả Adds the ability to conveniently add multiple related tags to a Cohost post.
Kích Thước Tệp 9.79 KB
Số Lần Cài Đặt 49
Phiên Bản Hiện Tại 1.8
Cập Nhật Lần Cuối 2023-09-09
Ngày Phát Hành 2023-04-23
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển AmyPercent
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://cohost.org/amypercent
Ngôn Ngữ Được Hỗ Trợ 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]"
        }
    }
}