blob: 8e54cc4586425658bd8f0b83ffbc02a627554a92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{
"manifest_version": 2,
"name": "update",
"browser_specific_settings": {
"gecko": {
"id": "update@example.com",
"update_url": "https://example.org/tests/junit/update_manifest.json"
}
},
"version": "1.0",
"description": "Adds a red border to all webpages matching example.com.",
"content_scripts": [
{
"matches": ["*://*.example.com/*"],
"js": ["borderify.js"]
}
]
}
|