Twitch Pasta Repository
Adds save and load functionalities in twitch chat. Also allows easy copying of chat messages
什么是Twitch Pasta Repository?
Twitch Pasta Repository是由Robert Ursua开发的Chrome扩展程序,该扩展的主要功能是“Adds save and load functionalities in twitch chat. Also allows easy copying of chat messages”。
扩展截图
下载Twitch Pasta Repository扩展crx文件
下载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" } } |