Unitify

Convert units to your preferred tongue, in-page.

Unitify là gì?

Unitify là một tiện ích mở rộng Chrome được phát triển bởi Steve Pike, và tính năng chính của nó là "Convert units to your preferred tongue, in-page.".

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

screenshot

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

Tải xuống các tệp mở rộng Unitify 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

                        Unitify translates units and measurements in webpages in-place, so that you don't have to think about converting them yourself.                    

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

Tên Unitify Unitify
ID amhbhaikpableefmhhongikpbefdcgmf
URL Chính Thức https://chromewebstore.google.com/detail/unitify/amhbhaikpableefmhhongikpbefdcgmf
Mô tả Convert units to your preferred tongue, in-page.
Kích Thước Tệp 63.65 KB
Số Lần Cài Đặt 38
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2013-03-26
Ngày Phát Hành 2013-03-26
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Steve Pike
Loại Thanh Toán free
Trang Web Mở Rộng http://github.com/stringfellow/unitify
URL Trang Trợ Giúp http://github.com/stringfellow/unitify/issues
Ngôn Ngữ Được Hỗ Trợ en-GB
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Unitify",
    "description": "Convert units to your preferred tongue, in-page.",
    "version": "1.0.1",
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "globe.png",
        "default_popup": "options.html"
    },
    "icons": {
        "128": "globe.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery-1.9.1.min.js",
                "underscore-min.js",
                "unitify.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage"
    ]
}