Twitch Pasta Repository

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

什麼是Twitch Pasta Repository?

Twitch Pasta Repository是由Robert Ursua開發的Chrome擴展程式,該擴展的主要功能是“Adds save and load functionalities in twitch chat. Also allows easy copying of chat messages”。

擴展截圖

screenshot

下載Twitch Pasta Repository擴展crx文件

下載Twitch Pasta Repository擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Twitch Pasta Repository Twitch Pasta Repository
ID mjcbdimkpidbhoaahdcoffmajoofgbma
官方網址 https://chromewebstore.google.com/detail/twitch-pasta-repository/mjcbdimkpidbhoaahdcoffmajoofgbma
簡介 Adds save and load functionalities in twitch chat. Also allows easy copying of chat messages
檔案大小 136 KB
安裝次數 223
目前版本 0.0.1
更新時間 2016-12-15
上架時間 2016-12-15
評分 4.67/5 共 3 次評分
開發者 Robert Ursua
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
    }
}