Viewport Detector

Viewport detector for bootstrap 3

Qu'est-ce que Viewport Detector ?

Viewport Detector est une extension Chrome développée par https://bootstraptools.com, et sa fonction principale est "Viewport detector for bootstrap 3".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Viewport Detector

Téléchargez les fichiers d'extension Viewport Detector au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        As you know with the new version of Bootstrap 3 each viewport is represented by a class name respectively are col-lg- , col-md- , col-sm- and col-xs-.
I created this little extension to help me switch between different viewports while resizing the browser and decide which content should show in which device.
I will add more options to it in the future till then I hope you will find it useful while working with Bootstrap.                    

Informations de Base sur l'Extension

Nom Viewport Detector Viewport Detector
ID fpfdmgaahiocnoiaedbppoaipfjiiaep
URL Officiel https://chromewebstore.google.com/detail/viewport-detector/fpfdmgaahiocnoiaedbppoaipfjiiaep
Description Viewport detector for bootstrap 3
Taille du Fichier 153 KB
Nombre d'Installations 430
Version Actuelle 0.0.1
Dernière Mise à Jour 2014-02-06
Date de Publication 2014-02-06
Évaluation 4.00/5 Total 3 Évaluations
Développeur https://bootstraptools.com
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Viewport Detector",
    "version": "0.0.1",
    "manifest_version": 2,
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/jquery\/jquery.js"
            ],
            "css": [
                "css\/detect.css"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "css\/detect.css",
        "images\/smartphone.png",
        "images\/tablet.png",
        "images\/laptop.png",
        "images\/desktop.png",
        "images\/screeen-ruler.png",
        "images\/close.png"
    ],
    "description": "Viewport detector for bootstrap 3",
    "homepage_url": "http:\/\/hmdadou.com",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "page": "src\/bg\/background.html"
    },
    "options_page": "src\/options\/index.html",
    "browser_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "browser action demo"
    }
}