Twitch Pasta Repository
Adds save and load functionalities in twitch chat. Also allows easy copying of chat messages
Cos'è Twitch Pasta Repository?
Twitch Pasta Repository è un'estensione di Chrome sviluppata da Robert Ursua, e la sua funzione principale è "Adds save and load functionalities in twitch chat. Also allows easy copying of chat messages".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Twitch Pasta Repository
Scarica i file di estensione Twitch Pasta Repository in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | mjcbdimkpidbhoaahdcoffmajoofgbma |
URL Ufficiale | https://chromewebstore.google.com/detail/twitch-pasta-repository/mjcbdimkpidbhoaahdcoffmajoofgbma |
Descrizione | Adds save and load functionalities in twitch chat. Also allows easy copying of chat messages |
Dimensione del File | 136 KB |
Conteggio Installazioni | 223 |
Versione Corrente | 0.0.1 |
Ultimo Aggiornamento | 2016-12-15 |
Data di Pubblicazione | 2016-12-15 |
Valutazione | 4.67/5 Totale 3 Valutazioni |
Sviluppatore | Robert Ursua |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" } } |