Mobile View Switcher

Switch to mobile view with one click via toolbar button.

Mobile View Switcher là gì?

Mobile View Switcher là một tiện ích mở rộng Chrome được phát triển bởi Benni, và tính năng chính của nó là "Switch to mobile view with one click via toolbar button.".

Ả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 Mobile View Switcher

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

                        Mobile View Switcher is a lite extension that let you switch a website to mobile view. Default mobile view is iPhone with iOS 15 but you can change it from the options page.

Simply add a desired user-agent to change the mobile view to your desired one. There are many websites that offer user-agent strings for various devices. Simply copy and paste the desired one in the designated area in options page. Then reload any website to see the mobile view UI (while the addon is active).

Toolbar button serves as ON|OFF switch to enable or disable the addon. Grey color for toolbar icon is when the addon is inactive and yellow color is for the active state. Simply click on the toolbar icon to switch states.

To report bugs, please fill the bug report form in the addon's homepage (https://mybrowseraddon.com/mobile-view-switcher.html).                    

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

Tên Mobile View Switcher Mobile View Switcher
ID bmhfelbhbkeoldaiphchjibggnoodpcj
URL Chính Thức https://chromewebstore.google.com/detail/mobile-view-switcher/bmhfelbhbkeoldaiphchjibggnoodpcj
Mô tả Switch to mobile view with one click via toolbar button.
Kích Thước Tệp 34.33 KB
Số Lần Cài Đặt 110,839
Phiên Bản Hiện Tại 0.2.0
Cập Nhật Lần Cuối 2024-01-19
Ngày Phát Hành 2019-11-06
Đánh Giá 3.48/5 Tổng số 96 Đánh Giá
Nhà Phát Triển Benni
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://mybrowseraddon.com/mobile-view-switcher.html
URL Trang Trợ Giúp https://mybrowseraddon.com/mobile-view-switcher.html
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.2.0",
    "manifest_version": 3,
    "name": "Mobile View Switcher",
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "homepage_url": "https:\/\/mybrowseraddon.com\/mobile-view-switcher.html",
    "description": "Switch to mobile view with one click via toolbar button.",
    "background": {
        "service_worker": "background.js"
    },
    "options_ui": {
        "open_in_tab": true,
        "page": "data\/options\/options.html"
    },
    "permissions": [
        "storage",
        "scripting",
        "contextMenus",
        "declarativeNetRequest"
    ],
    "commands": {
        "toggle-mobile-view": {
            "description": "Switch to Mobile View",
            "suggested_key": {
                "mac": "Command+Shift+D",
                "default": "Ctrl+Shift+D"
            }
        }
    },
    "action": {
        "default_title": "Mobile View Switcher",
        "default_icon": {
            "16": "data\/icons\/16.png",
            "32": "data\/icons\/32.png",
            "48": "data\/icons\/48.png",
            "64": "data\/icons\/64.png"
        }
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_start",
            "js": [
                "data\/content_script\/inject.js"
            ]
        }
    ],
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png"
    }
}