Twitch Chat Pins

Pin the chat of specific users to watch Twitch more fun!

什麼是Twitch Chat Pins?

Twitch Chat Pins是由kjw3898開發的Chrome擴展程式,該擴展的主要功能是“Pin the chat of specific users to watch Twitch more fun!”。

擴展截圖

screenshot
screenshot
screenshot

下載Twitch Chat Pins擴展crx文件

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

擴展使用說明

                        This extension filter and pinning chats of specified Twitch users.
just click Twitch Chat pins and set username.

Update Note
v1.3.0
rohroh contribute below function
- Move to top of main Twitch chat
- Made it scrollable
- Added chat badges back in
----------------------------------------------------------
add less button to scroll chat list
limit maximam pinned chat to 400
reduce function with duplicated code or only one time use code
change absolute maxheight to relative
 - due to vertial arrangement video with chatlist

v1.2.1
hotfix bug that more button was duplicated

v1.2.0
make nickname also can pin. just input nickname or ID
when open popup, focus to user input
fix bug that not pinning until open extension popup.
make pin button on user card.
you can toggle how many show chats 2 or 8

v1.1.2
make popup smaller 
now can  add user by enter key
v1.1.1
change channel work
automatically start pinning
enhance UI
add VOD Chat Pin function                    

擴展基本資訊

名稱 Twitch Chat Pins Twitch Chat Pins
ID ehcdedkmlcbdgddpplpjobemecjdmhdf
官方網址 https://chromewebstore.google.com/detail/twitch-chat-pins/ehcdedkmlcbdgddpplpjobemecjdmhdf
簡介 Pin the chat of specific users to watch Twitch more fun!
檔案大小 25.17 KB
安裝次數 745
目前版本 1.3.0
更新時間 2021-03-27
上架時間 2021-03-04
評分 5.00/5 共 10 次評分
開發者 kjw3898
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/kjw3898/twitch-chat-pins
說明頁面URL https://github.com/kjw3898/twitch-chat-pins
支援的語言 en,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "128": "images\/icon128.png",
            "48": "images\/icon48.png"
        },
        "default_popup": "popup.html",
        "default_title": "Twitch Chat Pins"
    },
    "content_scripts": [
        {
            "js": [
                "filter.js"
            ],
            "matches": [
                "*:\/\/twitch.tv\/*",
                "*:\/\/*.twitch.tv\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "128": "images\/icon128.png",
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "64": "images\/icon64.png"
    },
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "permissions": [
        "*:\/\/*.twitch.tv\/*",
        "tabs",
        "webNavigation"
    ],
    "version": "1.3.0",
    "web_accessible_resources": [
        "filter.js"
    ]
}