PolyExtend

Extend your stream experience

什麼是PolyExtend?

PolyExtend是由PolyDev開發的Chrome擴展程式,該擴展的主要功能是“Extend your stream experience”。

擴展截圖

screenshot
screenshot
screenshot

下載PolyExtend擴展crx文件

下載PolyExtend擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        PolyExtend is a browser extension which adds extra features and tweaks to the live streaming websites Twitch and Beam.

Some of the features it adds:
- Twitch emotes on Beam
- Custom channel emotes for non-partners
- Message beautifier for StreamLink
- Randomized username colors
- Hide user avatars in chat (Beam only)
- Show uploaded channel thumbnails (Beam only)                    

擴展基本資訊

名稱 PolyExtend PolyExtend
ID cemfleddjlllfepdhabmmelmemodfjbf
官方網址 https://chromewebstore.google.com/detail/polyextend/cemfleddjlllfepdhabmmelmemodfjbf
簡介 Extend your stream experience
檔案大小 63.04 KB
安裝次數 46
目前版本 1.1.5
更新時間 2016-05-15
上架時間 2016-05-15
評分 4.33/5 共 6 次評分
開發者 PolyDev
付費類型 free
擴展官網 https://extend.dinu.ga/
說明頁面URL https://github.com/Tromino/PolyExtend/issues
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PolyExtend",
    "description": "Extend your stream experience",
    "version": "1.1.5",
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.beam.pro\/*"
            ],
            "js": [
                "js\/lib\/jquery.js",
                "js\/lib\/observe.js",
                "js\/lib\/bigint.js",
                "js\/main.js",
                "js\/beam.js",
                "js\/feat\/styles.js",
                "js\/feat\/thumbnails.js",
                "js\/feat\/devatars.js",
                "js\/feat\/mentions.js",
                "js\/feat\/emotes.js",
                "js\/feat\/images.js",
                "js\/feat\/beamlink.js",
                "js\/feat\/teams.js",
                "js\/feat\/colors.js",
                "js\/feat\/deleted.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.twitch.tv\/*"
            ],
            "js": [
                "js\/lib\/jquery.js",
                "js\/lib\/observe.js",
                "js\/lib\/bigint.js",
                "js\/main.js",
                "js\/twitch.js",
                "js\/feat\/styles.js",
                "js\/feat\/thumbnails.js",
                "js\/feat\/devatars.js",
                "js\/feat\/mentions.js",
                "js\/feat\/emotes.js",
                "js\/feat\/images.js",
                "js\/feat\/beamlink.js",
                "js\/feat\/teams.js",
                "js\/feat\/colors.js",
                "js\/feat\/deleted.js"
            ]
        }
    ],
    "page_action": {
        "default_title": "PolyExtend Settings",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    }
}