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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
        }
    }
}