Temporary Mobile View

View current page in the mobile-friendly format by spoofing Android or iOS user-agent string on request header and JavaScript sides

什麼是Temporary Mobile View?

Temporary Mobile View是由lunu.bounir開發的Chrome擴展程式,該擴展的主要功能是“View current page in the mobile-friendly format by spoofing Android or iOS user-agent string on request header and JavaScript sides”。

擴展截圖

screenshot

下載Temporary Mobile View擴展crx文件

下載Temporary Mobile View擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This extension toggles a website's view to its mobile version if the server supports a mobile-friendly option. Please note that this change is temporary, and you can return to the default desktop view by clicking the action button once more. Additionally, you can select different devices, such as Android, iOS, and Kindle, from the right-click context menu. The user-agent string for each device can be configured on the options page.

Important Points:
1. To revert to the regular mode, click the browser's action button.
2. To switch between view modes, use the right-click context menu options.
3. Some websites employ distinct URLs for their mobile-friendly versions, often redirecting users to the mobile version (e.g., en.wikipedia.org => en.m.wikipedia.org). In such cases, even after a refresh, you will remain on the mobile-friendly hostname. Be sure to correct the address in the address bar before refreshing the page.                    

擴展基本資訊

名稱 Temporary Mobile View Temporary Mobile View
ID jjlfibmkaaopacmmbnlimpnghciipjfo
官方網址 https://chromewebstore.google.com/detail/temporary-mobile-view/jjlfibmkaaopacmmbnlimpnghciipjfo
簡介 View current page in the mobile-friendly format by spoofing Android or iOS user-agent string on request header and JavaScript sides
檔案大小 47.07 KB
安裝次數 3,637
目前版本 0.2.2
更新時間 2023-09-08
上架時間 2019-11-06
評分 2.63/5 共 8 次評分
開發者 lunu.bounir
電子郵箱 [email protected]
付費類型 free
擴展官網 https://webextension.org/listing/mobile-view.html
說明頁面URL https://webextension.org/listing/mobile-view.html
隱私政策頁面URL https://add0n.com/policies/lunu.bounir.txt
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "0.2.2",
    "name": "Temporary Mobile View",
    "description": "View current page in the mobile-friendly format by spoofing Android or iOS user-agent string on request header and JavaScript sides",
    "permissions": [
        "declarativeNetRequestWithHostAccess",
        "storage",
        "contextMenus"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "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",
        "256": "\/data\/icons\/256.png",
        "512": "\/data\/icons\/512.png"
    },
    "homepage_url": "https:\/\/webextension.org\/listing\/mobile-view.html",
    "action": [],
    "background": {
        "service_worker": "worker.js"
    },
    "options_ui": {
        "page": "\/data\/options\/index.html"
    },
    "commands": {
        "_execute_action": {
            "description": "Press the action button"
        }
    }
}