Minimap

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

Wat is Minimap?

Minimap is een Chrome-extensie ontwikkeld door JohnPhamous, en de belangrijkste functie is "An extension that shows you a minimap of the current page.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Minimap

Download Minimap-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Minimap Minimap
ID cdlcndjickhogcfodaaiofbgdmefmgpp
Officiële URL https://chromewebstore.google.com/detail/minimap/cdlcndjickhogcfodaaiofbgdmefmgpp
Beschrijving An extension that shows you a minimap of the current page.
Bestandsgrootte 71.72 KB
Aantal Installaties 18
Huidige Versie 1.0.0
Laatst Bijgewerkt 2021-10-02
Publicatiedatum 2021-10-02
Ontwikkelaar JohnPhamous
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://pham.codes
Ondersteunde Talen 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"
            ]
        }
    ]
}