Spammerino - Twitch Chat Enhancement
Provides several handy tweaks to improve your Twitch chat efficiency.
Spammerino - Twitch Chat Enhancementคืออะไร?
Spammerino - Twitch Chat Enhancement เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Provides several handy tweaks to improve your Twitch chat efficiency."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Spammerino - Twitch Chat Enhancement
ดาวน์โหลดไฟล์ส่วนขยาย Spammerino - Twitch Chat Enhancement ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Features: * Repeat Button: Add a button after each message in twitch chat. Click it and you'll send the exact same message to the chat. * Message Hover-pin: Messages from the chat history are rarely expected to keep scrolling under your cursor. Spammerino auto locks the chat history for you whenever you hover over the chat history area. * Chat History Emote Clicking: In most cases, the emote you want to send is already present in the chat history. Instead of typing the emote or finding it in the emote menu, you can now grab that emote directly from chat history by simply clicking it. * Rejected Messages Resending: Sometimes your attempt to send a message may fail due to various reasons, such as slow mode, r9k mode, or your message is identical to the previous one within 30 seconds. To successfully send your message, you either have to wait or modify the message, and then resend it. Spammerino will do this (wait/modification + resend) for you automatically. * Customization: All features above can be disabled or customized in the options menu. This extension is open source. Find the source and submit bugs at https://github.com/yznpku/Spammerino.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | mmfojmapmifacojoajmmcdhfapoagfho |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/spammerino-twitch-chat-en/mmfojmapmifacojoajmmcdhfapoagfho |
คำอธิบาย | Provides several handy tweaks to improve your Twitch chat efficiency. |
ขนาดไฟล์ | 64.17 KB |
จำนวนการติดตั้ง | 473 |
เวอร์ชันปัจจุบัน | 1.3.3 |
อัปเดตครั้งล่าสุด | 2017-06-03 |
วันที่เผยแพร่ | 2017-06-03 |
คะแนน | 2.33/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | Unknown |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/yznpku/Spammerino |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Spammerino - Twitch Chat Enhancement", "version": "1.3.3", "description": "Provides several handy tweaks to improve your Twitch chat efficiency.", "homepage_url": "https:\/\/github.com\/yznpku\/Spammerino", "icons": { "16": "image\/logo16.png", "24": "image\/logo24.png", "32": "image\/logo32.png", "48": "image\/logo48.png", "64": "image\/logo64.png", "128": "image\/logo128.png" }, "page_action": { "default_icon": { "16": "image\/logo16.png", "24": "image\/logo24.png", "32": "image\/logo32.png", "48": "image\/logo48.png", "64": "image\/logo64.png", "128": "image\/logo128.png" } }, "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "content_scripts": [ { "js": [ "contrib\/jquery-2.2.3.min.js", "js\/common.js", "js\/content.js" ], "css": [ "css\/spammerino.css", "css\/twitch.css" ], "matches": [ "*:\/\/www.twitch.tv\/*" ], "all_frames": true, "run_at": "document_end" } ], "options_page": "html\/options.html", "web_accessible_resources": [ "image\/*.png", "js\/*.js", "config.json" ], "permissions": [ "storage", "tabs" ] } |