24 lines
393 B
JSON
Executable File
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"
|
|
}
|
|
}
|