Be Responsive

Be Responsive helps you to build smooth and responsive websites by rendering your website in both desktop and mobile view.

Was ist Be Responsive?

Be Responsive ist eine Chrome-Erweiterung, die von https://bluetickconsultants.com entwickelt wurde, und ihr Hauptmerkmal ist "Be Responsive helps you to build smooth and responsive websites by rendering your website in both desktop and mobile view.".

Erweiterungsscreenshots

screenshot
screenshot

Be Responsive-Erweiterungs-CRX-Datei herunterladen

Laden Sie Be Responsive-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This extension will render your website in both desktop and mobile view simultaneously. This allows users to view and test the responsiveness of web pages across devices without having to navigate to separate pages or resize the browser window.


Make your development Effective
By using Be Responsive                    

Grundlegende Informationen zur Erweiterung

Name Be Responsive Be Responsive
ID pfcbcoagfnebpkdibhobjehbphbkdafh
Offizielle URL https://chromewebstore.google.com/detail/be-responsive/pfcbcoagfnebpkdibhobjehbphbkdafh
Beschreibung Be Responsive helps you to build smooth and responsive websites by rendering your website in both desktop and mobile view.
Dateigröße 1.53 MB
Installationsanzahl 174
Aktuelle Version 1.0
Letztes Update 2023-01-13
Veröffentlichungsdatum 2023-01-12
Bewertung 3.67/5 Insgesamt 3 Bewertungen
Entwickler https://bluetickconsultants.com
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Be Responsive",
    "description": "Be Responsive helps you to build smooth and responsive websites by rendering your website in both desktop and mobile view.",
    "version": "1.0",
    "manifest_version": 3,
    "action": {
        "default_popup": "popup.html",
        "default_icon": "logo.png",
        "default_title": "Open the popup"
    },
    "icons": {
        "16": "logo.png",
        "48": "logo.png",
        "128": "logo.png"
    },
    "background": {
        "service_worker": "static\/js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "static\/js\/content.js"
            ]
        }
    ]
}