Boost up speed of sending fleets.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "OGame fast attack",
"manifest_version": 2,
"version": "0.47",
"default_locale": "en",
"description": "__MSG_appDesc__",
"icons": {
"48": "icon_48.png",
"128": "icon_128.png"
},
"content_scripts": [
{
"matches": [
"http://*.ogame.gameforge.com/*"
],
"css": [
"style.css"
],
"js": [
"jquery.min.js",
"lib/chrome_sync.user.js",
"lib/storage.user.js",
"lib/location_logic.user.js",
"fast_attack.user.js"
],
"run_at": "document_start"
}
],
"permissions": [
"storage"
]
}