Files
portfolio.sorlinv.fr/extension/manifest.json
2022-11-22 15:31:36 +01:00

24 lines
393 B
JSON
Executable File

{
"manifest_version": 2,
"name": "Shimeji",
"description": "Adding a shimeji in web page",
"version": "1.0",
"permissions": [
"http://*/*",
"https://*/*"
],
"content_scripts": [
{
"matches": ["*://*/*"],
"js": ["main.js"]
}
],
"browser_action": {
"default_icon" : "Shimeji/logo.png",
"default_popup": "popup.html"
},
"icons": {
"128" : "Shimeji/logo.png"
}
}