Twitch Pasta Repository
Adds save and load functionalities in twitch chat. Also allows easy copying of chat messages
Twitch Pasta Repository là gì?
Twitch Pasta Repository là một tiện ích mở rộng Chrome được phát triển bởi Robert Ursua, và tính năng chính của nó là "Adds save and load functionalities in twitch chat. Also allows easy copying of chat messages".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Twitch Pasta Repository
Tải xuống các tệp mở rộng Twitch Pasta Repository dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | mjcbdimkpidbhoaahdcoffmajoofgbma |
URL Chính Thức | https://chromewebstore.google.com/detail/twitch-pasta-repository/mjcbdimkpidbhoaahdcoffmajoofgbma |
Mô tả | Adds save and load functionalities in twitch chat. Also allows easy copying of chat messages |
Kích Thước Tệp | 136 KB |
Số Lần Cài Đặt | 223 |
Phiên Bản Hiện Tại | 0.0.1 |
Cập Nhật Lần Cuối | 2016-12-15 |
Ngày Phát Hành | 2016-12-15 |
Đánh Giá | 4.67/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | Robert Ursua |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |