Bootstrap Viewport

Displays the current Bootstrap Viewport

Cos'è Bootstrap Viewport?

Bootstrap Viewport è un'estensione di Chrome sviluppata da serhat-m, e la sua funzione principale è "Displays the current Bootstrap Viewport".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Bootstrap Viewport

Scarica i file di estensione Bootstrap Viewport in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Determines which Bootstrap viewport is active based on the width. Tested with Bootstrap v5.                    

Informazioni di Base sull'Estensione

Nome Bootstrap Viewport Bootstrap Viewport
ID hbbkilahnbjmfhmfpckjpamaicggokje
URL Ufficiale https://chromewebstore.google.com/detail/bootstrap-viewport/hbbkilahnbjmfhmfpckjpamaicggokje
Descrizione Displays the current Bootstrap Viewport
Dimensione del File 15.01 KB
Conteggio Installazioni 659
Versione Corrente 0.2.1
Ultimo Aggiornamento 2023-06-05
Data di Pubblicazione 2022-11-10
Valutazione 4.67/5 Totale 3 Valutazioni
Sviluppatore serhat-m
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Bootstrap Viewport",
    "version": "0.2.1",
    "description": "Displays the current Bootstrap Viewport",
    "action": {
        "default_title": "Bootstrap Viewport",
        "default_popup": ".\/html\/popup.html"
    },
    "icons": {
        "16": ".\/bin\/img\/symbol16.png",
        "48": ".\/bin\/img\/symbol48.png",
        "128": ".\/bin\/img\/symbol128.png"
    },
    "background": {
        "service_worker": ".\/js\/background.js"
    },
    "content_scripts": [
        {
            "css": [
                ".\/css\/bs-viewport.css"
            ],
            "js": [
                ".\/js\/bs-viewport.js",
                ".\/js\/content.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ],
            "type": "module"
        }
    ],
    "permissions": [
        "storage"
    ],
    "author": "Serhat M."
}