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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย doler-teams-2023 และคุณลักษณะหลักของมันคือ "An extension for developers to test web pages in different screen resolutions, with an option to define your own resolutions"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Resolution Test

ดาวน์โหลดไฟล์ส่วนขยาย Resolution Test ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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:\/\/*\/*"
            ]
        }
    ]
}