Twitch Pasta Repository
Adds save and load functionalities in twitch chat. Also allows easy copying of chat messages
Wat is Twitch Pasta Repository?
Twitch Pasta Repository is een Chrome-extensie ontwikkeld door Robert Ursua, en de belangrijkste functie is "Adds save and load functionalities in twitch chat. Also allows easy copying of chat messages".
Extensie Screenshots
Download het CRX-bestand van de extensie Twitch Pasta Repository
Download Twitch Pasta Repository-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | mjcbdimkpidbhoaahdcoffmajoofgbma |
Officiële URL | https://chromewebstore.google.com/detail/twitch-pasta-repository/mjcbdimkpidbhoaahdcoffmajoofgbma |
Beschrijving | Adds save and load functionalities in twitch chat. Also allows easy copying of chat messages |
Bestandsgrootte | 136 KB |
Aantal Installaties | 223 |
Huidige Versie | 0.0.1 |
Laatst Bijgewerkt | 2016-12-15 |
Publicatiedatum | 2016-12-15 |
Beoordeling | 4.67/5 Totaal 3 Beoordelingen |
Ontwikkelaar | Robert Ursua |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" } } |