ttv-favorites

enables favorites on Twitch.tv

ttv-favorites란 무엇입니까?

ttv-favorites은(는) http://portals.sh에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "enables favorites on Twitch.tv"입니다.

확장 프로그램 스크린샷

screenshot

ttv-favorites 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        - features::
    - star followed channels to keep track of your favorites
    - view all favorites in the extension icon popup
    - adds a "favorite channels" section in the sidebar of Twitch.tv for 
      distinction / awareness / easier access to smaller channels
- note::
    - the left sidebar on Twitch.tv must be expanded for this extension to work
    - favorites are synced to your browser account, not your Twitch 
      account
    - you cannot favorite more than 511 channels                    

확장 프로그램 기본 정보

이름 ttv-favorites ttv-favorites
ID ehbgkeiljpignaickbblnbfkhfeemmme
공식 URL https://chrome.google.com/webstore/detail/ttv-favorites/ehbgkeiljpignaickbblnbfkhfeemmme
설명 enables favorites on Twitch.tv
파일 크기 7.04 MB
설치 횟수 155
현재 버전 1.2.16
최근 업데이트 2022-11-28
출시 날짜 2022-04-21
평점 5.00/5 총 6 개의 평점
개발자 http://portals.sh
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/jc9108/ttv-favorites
도움말 페이지 URL https://github.com/jc9108/ttv-favorites/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "jc9108",
    "name": "ttv-favorites",
    "description": "enables favorites on Twitch.tv",
    "homepage_url": "https:\/\/github.com\/jc9108\/ttv-favorites",
    "version": "1.2.16",
    "manifest_version": 3,
    "icons": {
        "16": ".\/images\/icon_16.png",
        "32": ".\/images\/icon_32.png",
        "48": ".\/images\/icon_48.png",
        "128": ".\/images\/icon_128.png"
    },
    "action": {
        "default_icon": {
            "16": ".\/images\/icon_16.png",
            "24": ".\/images\/icon_24.png",
            "32": ".\/images\/icon_32.png"
        },
        "default_title": "ttv-favorites",
        "default_popup": ".\/popup\/popup.html"
    },
    "permissions": [
        "storage",
        "tabs",
        "webNavigation"
    ],
    "background": {
        "type": "module",
        "service_worker": ".\/build\/background.js"
    },
    "content_scripts": [
        {
            "run_at": "document_idle",
            "matches": [
                "https:\/\/www.twitch.tv\/*"
            ],
            "exclude_matches": [
                "https:\/\/www.twitch.tv\/downloads\/*",
                "https:\/\/www.twitch.tv\/jobs\/*",
                "https:\/\/www.twitch.tv\/moderator\/*",
                "https:\/\/www.twitch.tv\/p\/*",
                "https:\/\/www.twitch.tv\/popout\/*",
                "https:\/\/www.twitch.tv\/store\/*",
                "https:\/\/www.twitch.tv\/team\/*",
                "https:\/\/www.twitch.tv\/turbo\/*"
            ],
            "js": [
                ".\/build\/foreground.js"
            ],
            "css": [
                ".\/foreground\/foreground.css"
            ]
        }
    ]
}