Measur

Record how far you scroll on Tumblr

什麼是Measur?

Measur是由cactusman.nick開發的Chrome擴展程式,該擴展的主要功能是“Record how far you scroll on Tumblr”。

擴展截圖

screenshot
screenshot
screenshot

下載Measur擴展crx文件

下載Measur擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
            ]
        }
    ]
}