Twitch Pasta Repository

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

What is Twitch Pasta Repository?

Twitch Pasta Repository is a Chrome extension developed by Robert Ursua, and its main feature is "Adds save and load functionalities in twitch chat. Also allows easy copying of chat messages".

Extension Screenshots

screenshot

Download Twitch Pasta Repository Extension CRX File

Download Twitch Pasta Repository extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Twitch Pasta Repository Twitch Pasta Repository
ID mjcbdimkpidbhoaahdcoffmajoofgbma
Official URL https://chromewebstore.google.com/detail/twitch-pasta-repository/mjcbdimkpidbhoaahdcoffmajoofgbma
Description Adds save and load functionalities in twitch chat. Also allows easy copying of chat messages
File Size 136 KB
Installation Count 223
Current Version 0.0.1
Last Updated 2016-12-15
Publish Date 2016-12-15
Rating 4.67/5 Total 3 Ratings
Developer Robert Ursua
Email [email protected]
Payment Type free
Supported Languages 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"
    }
}