Measur

Record how far you scroll on Tumblr

Measur là gì?

Measur là một tiện ích mở rộng Chrome được phát triển bởi cactusman.nick, và tính năng chính của nó là "Record how far you scroll on Tumblr".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Measur

Tải xuống các tệp mở rộng Measur dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Measur Measur
ID emmhkobkpbmoddcaejhpnffekhigbool
URL Chính Thức https://chromewebstore.google.com/detail/measur/emmhkobkpbmoddcaejhpnffekhigbool
Mô tả Record how far you scroll on Tumblr
Kích Thước Tệp 14.14 KB
Số Lần Cài Đặt 26
Phiên Bản Hiện Tại 2.5
Cập Nhật Lần Cuối 2013-08-19
Ngày Phát Hành 2013-08-18
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển cactusman.nick
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}