Bootstrap Viewport

Displays the current Bootstrap Viewport

What is Bootstrap Viewport?

Bootstrap Viewport is a Chrome extension developed by serhat-m, and its main feature is "Displays the current Bootstrap Viewport".

Extension Screenshots

screenshot

Download Bootstrap Viewport Extension CRX File

Download Bootstrap Viewport extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Bootstrap Viewport Bootstrap Viewport
ID hbbkilahnbjmfhmfpckjpamaicggokje
Official URL https://chromewebstore.google.com/detail/bootstrap-viewport/hbbkilahnbjmfhmfpckjpamaicggokje
Description Displays the current Bootstrap Viewport
File Size 15.01 KB
Installation Count 659
Current Version 0.2.1
Last Updated 2023-06-05
Publish Date 2022-11-10
Rating 4.67/5 Total 3 Ratings
Developer serhat-m
Email [email protected]
Payment Type free
Supported Languages 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."
}