OGame Timer

Calculate times remaining in Ogame.

OGame Timer क्या है?

OGame Timer WLMitch द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Calculate times remaining in Ogame."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में OGame Timer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        We often need how many times remaining until you can build or research something.
This extension calculate the time needed to get resources.
He gives the maximum number of ships that you can build.

Update v2.2.2 changes :
 - [Bug] Queues disabled because of chrome unload background
 - [Bug] Wrong sort for fleets
 - [Bug] On construction details "Finished" displayed and not "Never"
 - [Bug] some errors on queues

WIP :
 - [New] Popup style
 - [Bug] Queues must reload pages
 - [Bug] Throttle queues with fleets movements

Update v2.0 is here.
 - Recode some function
 - New alert system
 - New queue building system

Features
 - Show needed time before you can build something.
 - Show amount of missing ressources in details and time before get them.
 - Show time before getting ressources to the max stockage value.
 - Save builds and fleet movement timers to show them in the application button.
 - Play a sound on an event
 - [Experimental] Building queue, disabled by default (use at your own risks)

All features can be desactivated in Options (Right clic on icon).                    

एक्सटेंशन की मूल जानकारी

नाम OGame Timer OGame Timer
ID phcgdpgoofnibfjcekphmdbjhkdfnkad
आधिकारिक URL https://chromewebstore.google.com/detail/ogame-timer/phcgdpgoofnibfjcekphmdbjhkdfnkad
विवरण Calculate times remaining in Ogame.
फ़ाइल का आकार 188 KB
स्थापना संख्या 2,009
वर्तमान संस्करण 2.2.2
अंतिम अपडेट 2015-03-06
प्रकाशन तिथि 2015-03-06
रेटिंग 4.30/5 कुल 179 रेटिंग्स
डेवलपर WLMitch
भुगतान के प्रकार free
समर्थित भाषाएँ en,fr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "short_name": "OGT",
    "description": "__MSG_appDesc__",
    "version": "2.2.2",
    "icons": {
        "16": "img\/app\/icon-16.png",
        "48": "img\/app\/icon-48.png",
        "128": "img\/app\/icon-128.png"
    },
    "default_locale": "en",
    "permissions": [
        "tabs",
        "notifications",
        "alarms"
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com\/analytics.js; object-src 'self';",
    "background": {
        "persistent": false,
        "scripts": [
            "js\/jquery.js",
            "js\/ogt.js",
            "js\/ogt.utils.js",
            "js\/ogt.params.js",
            "js\/ogt.event.js",
            "js\/ogt.alert.js",
            "js\/ogt.timers.js",
            "js\/ogt.infos.js",
            "js\/ogt.settings.js",
            "js\/ogt.queue.js",
            "js\/ogt.background.js"
        ]
    },
    "options_ui": {
        "page": "html\/options.html",
        "chrome_style": true
    },
    "browser_action": {
        "default_title": "__MSG_appName__",
        "default_icon": {
            "19": "img\/popup\/icon-19.png",
            "38": "img\/popup\/icon-38.png"
        },
        "default_popup": "html\/popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "js\/jquery.js",
                "js\/ogt.js",
                "js\/ogt.utils.js",
                "js\/ogt.params.js",
                "js\/ogt.event.js",
                "js\/ogt.timers.js",
                "js\/ogt.infos.js",
                "js\/ogt.alert.js",
                "js\/ogt.settings.js",
                "js\/ogt.queue.js",
                "js\/ogt.page.js"
            ],
            "run_at": "document_end",
            "matches": [
                "http:\/\/*.ogame.gameforge.com\/*"
            ]
        }
    ]
}