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 |
Eメール | [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" } } |