Mobius

A minimap to easily navigate websites.

Mobius क्या है?

Mobius imagentleman (José Antonio Chio) द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A minimap to easily navigate websites."।

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

screenshot
screenshot

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

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

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

                        The minimap shows a miniature copy of the website. 

If you move the mouse over the minimap, the page will scroll exactly to the spot you are pointing at.

Toggle the extension (turn on or off) clicking the extension icon (paper with a colored strip) on the top right or using the hotkey Ctrl+Shift+F (while holding Ctrl and Shift, press F) or Command+Shift+F on Mac. If the hotkey doesn't work, go to chrome://extensions/ and scroll to the bottom and click on keyboard shortcuts (to the right) to set it manually.

Notes:
After installation, the extension will work on newly opened tabs (not in the tabs that were opened before you installed the extension).

Other works
http://imagentleman.github.io                    

एक्सटेंशन की मूल जानकारी

नाम Mobius Mobius
ID hodeaeahgdlapjmmblhdhhplckchmbaf
आधिकारिक URL https://chrome.google.com/webstore/detail/mobius/hodeaeahgdlapjmmblhdhhplckchmbaf
विवरण A minimap to easily navigate websites.
फ़ाइल का आकार 66.37 KB
स्थापना संख्या 96
वर्तमान संस्करण 4
अंतिम अपडेट 2014-05-22
प्रकाशन तिथि 2014-05-22
रेटिंग 3.67/5 कुल 9 रेटिंग्स
डेवलपर imagentleman (José Antonio Chio)
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://imagentleman.github.io
समर्थित भाषाएँ en,es
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Mobius",
    "version": "4",
    "manifest_version": 2,
    "default_locale": "en",
    "description": "__MSG_appDesc__",
    "icons": {
        "128": "icon-128.png"
    },
    "browser_action": {
        "default_icon": "icon-19-grey.png"
    },
    "background": {
        "scripts": [
            "jquery-2.1.1.min.js",
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-2.1.1.min.js",
                "mobius.js"
            ],
            "run_at": "document_end"
        }
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+F"
            }
        }
    },
    "permissions": [
        "storage",
        "tabs",
        "*:\/\/*\/*"
    ]
}