Minimap

An extension that shows you a minimap of the current page.

Minimap là gì?

Minimap là một tiện ích mở rộng Chrome được phát triển bởi JohnPhamous, và tính năng chính của nó là "An extension that shows you a minimap of the current 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 Minimap

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

                        An extension that gives you a minimap of the current page. You can click anywhere on the minimap to scroll to that position on the page.                    

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

Tên Minimap Minimap
ID cdlcndjickhogcfodaaiofbgdmefmgpp
URL Chính Thức https://chromewebstore.google.com/detail/minimap/cdlcndjickhogcfodaaiofbgdmefmgpp
Mô tả An extension that shows you a minimap of the current page.
Kích Thước Tệp 71.72 KB
Số Lần Cài Đặt 18
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2021-10-02
Ngày Phát Hành 2021-10-02
Nhà Phát Triển JohnPhamous
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://pham.codes
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Minimap",
    "version": "1.0.0",
    "icons": {
        "16": "assets\/icons\/favicon-16.png",
        "32": "assets\/icons\/favicon-32.png",
        "48": "assets\/icons\/favicon-48.png",
        "128": "assets\/icons\/favicon-128.png"
    },
    "description": "An extension that shows you a minimap of the current page.",
    "homepage_url": "https:\/\/github.com\/abhijithvijayan\/web-extension-starter",
    "short_name": "Minimap",
    "permissions": [
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "author": "johnphamous",
    "minimum_chrome_version": "49",
    "browser_action": {
        "default_icon": {
            "16": "assets\/icons\/favicon-16.png",
            "32": "assets\/icons\/favicon-32.png",
            "48": "assets\/icons\/favicon-48.png",
            "128": "assets\/icons\/favicon-128.png"
        },
        "default_title": "tiny title",
        "chrome_style": false
    },
    "background": {
        "scripts": [
            "js\/background.bundle.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/contentScript.bundle.js"
            ]
        }
    ]
}