Twitch Pasta Repository

Adds save and load functionalities in twitch chat. Also allows easy copying of chat messages

Hvad er Twitch Pasta Repository?

Twitch Pasta Repository er en Chrome-udvidelse udviklet af Robert Ursua, og dens hovedfunktion er "Adds save and load functionalities in twitch chat. Also allows easy copying of chat messages".

Udvidelsesskærmbilleder

screenshot

Download Twitch Pasta Repository-udvidelses-CRX-fil

Download Twitch Pasta Repository-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Twitch Pasta Repository Twitch Pasta Repository
ID mjcbdimkpidbhoaahdcoffmajoofgbma
Officiel URL https://chromewebstore.google.com/detail/twitch-pasta-repository/mjcbdimkpidbhoaahdcoffmajoofgbma
Beskrivelse Adds save and load functionalities in twitch chat. Also allows easy copying of chat messages
Filstørrelse 136 KB
Antal Installationer 223
Nuværende Version 0.0.1
Senest Opdateret 2016-12-15
Udgivelsesdato 2016-12-15
Bedømmelse 4.67/5 Samlet 3 Bedømmelser
Udvikler Robert Ursua
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
    }
}