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