Minimap

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

Minimapとは何ですか?

MinimapはJohnPhamousによって開発されたChromeの拡張機能で、その主な機能は「An extension that shows you a minimap of the current page.」です。

拡張機能のスクリーンショット

screenshot

Minimap拡張機能のCRXファイルをダウンロード

Minimap拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Minimap Minimap
ID cdlcndjickhogcfodaaiofbgdmefmgpp
公式URL https://chromewebstore.google.com/detail/minimap/cdlcndjickhogcfodaaiofbgdmefmgpp
説明 An extension that shows you a minimap of the current page.
ファイルサイズ 71.72 KB
インストール数 18
現在のバージョン 1.0.0
最終更新日 2021-10-02
公開日 2021-10-02
開発者 JohnPhamous
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://pham.codes
対応言語 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"
            ]
        }
    ]
}