Simple Ruler

This extension measures segments on the current tab and their slopes

Simple Ruler là gì?

Simple Ruler là một tiện ích mở rộng Chrome được phát triển bởi Pablo Henriquez, và tính năng chính của nó là "This extension measures segments on the current tab and their slopes".

Ả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 Simple Ruler

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

                        Draw a segment on the tab to know its measure and inclination.
The segment creates a circle to know its radial measurement.                    

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

Tên Simple Ruler Simple Ruler
ID bekpjpnfkoiocohhkaphfoccjnhcgakm
URL Chính Thức https://chromewebstore.google.com/detail/simple-ruler/bekpjpnfkoiocohhkaphfoccjnhcgakm
Mô tả This extension measures segments on the current tab and their slopes
Kích Thước Tệp 50.76 KB
Số Lần Cài Đặt 72
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2021-02-23
Ngày Phát Hành 2021-02-23
Đánh Giá 4.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Pablo Henriquez
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Simple Ruler",
    "description": "This extension measures segments on the current tab and their slopes",
    "version": "0.1",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                ".\/styles.css"
            ],
            "js": [
                ".\/script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            ".\/background.js"
        ]
    },
    "icons": {
        "128": ".\/icon_128.png"
    },
    "browser_action": {
        "default_icon": ".\/icon_128.png"
    }
}