mirror of
https://forge.fsky.io/oneflux/omegafox.git
synced 2026-02-10 17:52:04 -08:00
14 lines
283 B
JSON
14 lines
283 B
JSON
{
|
|
"name": "Simple extension",
|
|
"version": "0.1",
|
|
"background": {
|
|
"scripts": ["index.js"]
|
|
},
|
|
"content_scripts": [{
|
|
"matches": ["<all_urls>"],
|
|
"css": [],
|
|
"js": ["content-script.js"]
|
|
}],
|
|
"permissions": ["background", "activeTab"],
|
|
"manifest_version": 2
|
|
}
|