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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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]"
        }
    }
}