Minimap

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

Minimap क्या है?

Minimap JohnPhamous द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An extension that shows you a minimap of the current page."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Minimap एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
ईमेल [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"
            ]
        }
    ]
}