ttv-favorites

enables favorites on Twitch.tv

什么是ttv-favorites?

ttv-favorites是由http://portals.sh开发的Chrome扩展程序,该扩展的主要功能是“enables favorites on Twitch.tv”。

扩展截图

screenshot

下载ttv-favorites扩展crx文件

下载ttv-favorites扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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