Twitch Chat Pins

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

Twitch Chat Pins क्या है?

Twitch Chat Pins kjw3898 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Pin the chat of specific users to watch Twitch more fun!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Twitch Chat Pins एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक URL 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"
    ]
}