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