mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 06:18:35 +02:00
21 lines
268 B
JSON
21 lines
268 B
JSON
{
|
|
|
|
"manifest_version": 2,
|
|
"name": "Borderify",
|
|
"version": "1.0",
|
|
|
|
"applications": {
|
|
"gecko": {
|
|
"id": "borderify@mozilla.org"
|
|
}
|
|
},
|
|
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["*://*.mozilla.org/*"],
|
|
"js": ["borderify.js"]
|
|
}
|
|
]
|
|
|
|
}
|