Twitch Pasta Repository

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

Was ist Twitch Pasta Repository?

Twitch Pasta Repository ist eine Chrome-Erweiterung, die von Robert Ursua entwickelt wurde, und ihr Hauptmerkmal ist "Adds save and load functionalities in twitch chat. Also allows easy copying of chat messages".

Erweiterungsscreenshots

screenshot

Twitch Pasta Repository-Erweiterungs-CRX-Datei herunterladen

Laden Sie Twitch Pasta Repository-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Twitch Pasta Repository Twitch Pasta Repository
ID mjcbdimkpidbhoaahdcoffmajoofgbma
Offizielle URL https://chromewebstore.google.com/detail/twitch-pasta-repository/mjcbdimkpidbhoaahdcoffmajoofgbma
Beschreibung Adds save and load functionalities in twitch chat. Also allows easy copying of chat messages
Dateigröße 136 KB
Installationsanzahl 223
Aktuelle Version 0.0.1
Letztes Update 2016-12-15
Veröffentlichungsdatum 2016-12-15
Bewertung 4.67/5 Insgesamt 3 Bewertungen
Entwickler Robert Ursua
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    }
}