summaryrefslogtreecommitdiff
path: root/manifest.json
blob: 70442f862e0f080d9d11c46c2f905cc7573b2b66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
    "manifest_version": 2,
    "name": "TinyExtension",
    "version": "0.1.0",
    "description": "TinyEmotes support for Twitch chat",
    "icons": {
        "48": "icons/48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*://*.twitch.tv/*"
            ],
            "js": [
                "chat.js",
                "extension.js"
            ]
        }
    ]
}