Measur

Record how far you scroll on Tumblr

Measur क्या है?

Measur cactusman.nick द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Record how far you scroll on Tumblr"।

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

screenshot
screenshot
screenshot

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

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

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

                        Ever wonder how much Tumbling you do?  Using Measur you'll know exactly how far you've gone as a physical distance.  Every inch or centimetre is recorded for posterity, so when you ask yourself what you've done all day, you'll know the extent of your Tumbles.

Each time you enter a Tumblr tab, Measur begins recording your travel.  Every tab receives an individual distance counter, as part of its title, which updates when you navigate to a new Tumblr page.  As well, a cumulative total is maintained and accessible by the button in the upper right corner.

The options page give you your choice of units, metric or imperial, as well as the ability to reset your total back to zero whenever you want.                    

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

नाम Measur Measur
ID emmhkobkpbmoddcaejhpnffekhigbool
आधिकारिक URL https://chromewebstore.google.com/detail/measur/emmhkobkpbmoddcaejhpnffekhigbool
विवरण Record how far you scroll on Tumblr
फ़ाइल का आकार 14.14 KB
स्थापना संख्या 26
वर्तमान संस्करण 2.5
अंतिम अपडेट 2013-08-19
प्रकाशन तिथि 2013-08-18
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर cactusman.nick
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Measur",
    "version": "2.5",
    "manifest_version": 2,
    "icons": {
        "19": "images\/greyIcon19.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "description": "Record how far you scroll on Tumblr",
    "browser_action": {
        "default_icon": "images\/greyIcon19.png",
        "default_popup": "popup.html"
    },
    "options_page": "options.html",
    "background": {
        "scripts": [
            "backgroundScript.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        "storage",
        "*:\/\/*.tumblr.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.tumblr.com\/*"
            ],
            "js": [
                "injectScript.js"
            ]
        }
    ]
}