Mobius

A minimap to easily navigate websites.

Mobius là gì?

Mobius là một tiện ích mở rộng Chrome được phát triển bởi imagentleman (José Antonio Chio), và tính năng chính của nó là "A minimap to easily navigate websites.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Mobius

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

                        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                    

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

Tên Mobius Mobius
ID hodeaeahgdlapjmmblhdhhplckchmbaf
URL Chính Thức https://chrome.google.com/webstore/detail/mobius/hodeaeahgdlapjmmblhdhhplckchmbaf
Mô tả A minimap to easily navigate websites.
Kích Thước Tệp 66.37 KB
Số Lần Cài Đặt 96
Phiên Bản Hiện Tại 4
Cập Nhật Lần Cuối 2014-05-22
Ngày Phát Hành 2014-05-22
Đánh Giá 3.67/5 Tổng số 9 Đánh Giá
Nhà Phát Triển imagentleman (José Antonio Chio)
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://imagentleman.github.io
Ngôn Ngữ Được Hỗ Trợ 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",
        "*:\/\/*\/*"
    ]
}