Day Counter

Displays the number of days since a given date in the toolbar. Right click icon->Options to change date.

Day Counter क्या है?

Day Counter Josh द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Displays the number of days since a given date in the toolbar. Right click icon->Options to change date."।

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

screenshot

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

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

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

                        It shows the number of days since a specified date in the toolbar.

It is kind of like a timer/stopwatch but just for the days between dates.

Good for when you're trying to break a habit, and you want to see how many days you have gone (ie. looking at facebook while working).

This also syncs between browsers, you know what I mean.  Like you can be in one browser, and then get on another computer and login to chrome, and the date will sync, so you don't have to keep it updated.  Like it saves it on the internet, so it can be accessed anywhere, you know?  Like it's something that helps you manage stuff between computers and stuff, get it?                    

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

नाम Day Counter Day Counter
ID glnbjmdjpcccpdlckpenknmacmgbecpa
आधिकारिक URL https://chromewebstore.google.com/detail/day-counter/glnbjmdjpcccpdlckpenknmacmgbecpa
विवरण Displays the number of days since a given date in the toolbar. Right click icon->Options to change date.
फ़ाइल का आकार 21.39 KB
स्थापना संख्या 3,258
वर्तमान संस्करण 1.0.1
अंतिम अपडेट 2013-05-21
प्रकाशन तिथि 2013-05-21
रेटिंग 4.35/5 कुल 54 रेटिंग्स
डेवलपर Josh
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "js": [
                "script.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "description": "Displays the number of days since a given date in the toolbar. Right click icon->Options to change date.",
    "icons": {
        "128": "icon128.png",
        "16": "icon16.png",
        "48": "icon48.png"
    },
    "browser_action": {
        "default_icon": "icon16.png"
    },
    "permissions": [
        "storage"
    ],
    "options_page": "options.html",
    "incognito": "split",
    "manifest_version": 2,
    "name": "Day Counter",
    "version": "1.0.1"
}