grepolis-bot/manifest.json

30 lines
727 B
JSON

{
"manifest_version": 2,
"name": "Grepolis Bot",
"version": "0.0.1",
"description": "A Grepolis bot",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"author": "Les De Ridder",
"browser_action": { },
"background": { "scripts": ["background.js"] },
"content_scripts": [
{
"matches": ["*://*.grepolis.com/game/index*"],
"js": ["content.js"]
}
],
"web_accessible_resources": ["injection.js"],
"externally_connectable": { "matches": ["*://*.grepolis.com/game/index*"] },
"homepage_url": "https://git.fuwafuwa.moe/lesderid/grepolis-bot",
"offline_enabled": false,
"permissions": ["tabs", "contextMenus"],
"short_name": "Grepolis Bot"
}