Twitch Pasta Repository
Adds save and load functionalities in twitch chat. Also allows easy copying of chat messages
Twitch Pasta Repositoryคืออะไร?
Twitch Pasta Repository เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Robert Ursua และคุณลักษณะหลักของมันคือ "Adds save and load functionalities in twitch chat. Also allows easy copying of chat messages"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitch Pasta Repository
ดาวน์โหลดไฟล์ส่วนขยาย Twitch Pasta Repository ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
REQUIRES BETTER TWITCH TV TO WORK Adds save and load functionalities in twitch chat to easily store and access twitch copy pastas / messages. Adds copy button beside every message for easy copying of chat messages.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | mjcbdimkpidbhoaahdcoffmajoofgbma |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/twitch-pasta-repository/mjcbdimkpidbhoaahdcoffmajoofgbma |
คำอธิบาย | Adds save and load functionalities in twitch chat. Also allows easy copying of chat messages |
ขนาดไฟล์ | 136 KB |
จำนวนการติดตั้ง | 223 |
เวอร์ชันปัจจุบัน | 0.0.1 |
อัปเดตครั้งล่าสุด | 2016-12-15 |
วันที่เผยแพร่ | 2016-12-15 |
คะแนน | 4.67/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | Robert Ursua |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitch Pasta Repository", "description": "Adds save and load functionalities in twitch chat. Also allows easy copying of chat messages", "version": "0.0.1", "content_scripts": [ { "matches": [ "*:\/\/www.twitch.tv\/*" ], "js": [ "jquery.js", "copybutton.js" ], "run_at": "document_end" }, { "matches": [ "*:\/\/www.twitch.tv\/*" ], "css": [ "pastavault.css" ], "run_at": "document_end" } ], "browser_action": { "default_icon": "icon128.png", "default_popup": "popup.html", "default_title": "Twitch Pasta Repository" }, "permissions": [ "activeTab", "storage" ], "web_accessible_resources": [ "webAccessImgs\/copy_icon.png", "webAccessImgs\/delete_icon.png" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |