Resolution Test

An extension for developers to test web pages in different screen resolutions, with an option to define your own resolutions

Resolution Test란 무엇입니까?

Resolution Test은(는) doler-teams-2023에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension for developers to test web pages in different screen resolutions, with an option to define your own resolutions"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Resolution Test 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Developer extension for testing web pages in different screen resolutions, with the option to define your own resolutions and support for sharing the results to Facebook by taking screenshots  And share.

 Update v3.1 - 4th April 2023
 - Take a screenshot of your screen resolution and share it on Facebook
 - Save screenshot of test screen resolution

  Update v3.0 - March 29, 2023

  - Fixed Chrome notifications
  - Removed "restore previous window" instructions that are no longer needed
  - Simple design
  ==================================================  ========

  Test the browser window resizing resolution for developers to preview their web pages in different screen resolutions.  It includes a list of commonly used resolutions and the ability to customize that list.

  ==================================================  ========

  Using:
  1. Click the check resolution icon at the top right of your browser window.
  2. Select a resolution or select multiple resolutions and press "View All Selected".
  3. Your window will be resized
  4. Click the Screen Capture button if you want                    

확장 프로그램 기본 정보

이름 Resolution Test Resolution Test
ID idhfcdbheobinplaamokffboaccidbal
공식 URL https://chrome.google.com/webstore/detail/resolution-test/idhfcdbheobinplaamokffboaccidbal
설명 An extension for developers to test web pages in different screen resolutions, with an option to define your own resolutions
파일 크기 157 KB
설치 횟수 99,541
현재 버전 3.1.1
최근 업데이트 2023-05-09
출시 날짜 2017-10-26
평점 4.10/5 총 378 개의 평점
개발자 doler-teams-2023
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://sites.google.com/view/bas64-decode/home
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Resolution Test",
    "description": "An extension for developers to test web pages in different screen resolutions, with an option to define your own resolutions",
    "version": "3.1.1",
    "icons": {
        "16": ".\/assets\/icon128.png",
        "48": ".\/assets\/icon128.png",
        "128": ".\/assets\/icon128.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "action": {
        "default_icon": ".\/assets\/icon128.png",
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/vendor.js",
                "js\/content_script.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "notifications",
        "declarativeNetRequest",
        "tabs"
    ],
    "host_permissions": [
        ""
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "logo.svg"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ]
        }
    ]
}