Viewport Detector
Viewport detector for bootstrap 3
Was ist Viewport Detector?
Viewport Detector ist eine Chrome-Erweiterung, die von https://bootstraptools.com entwickelt wurde, und ihr Hauptmerkmal ist "Viewport detector for bootstrap 3".
Erweiterungsscreenshots
Viewport Detector-Erweiterungs-CRX-Datei herunterladen
Laden Sie Viewport Detector-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
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | fpfdmgaahiocnoiaedbppoaipfjiiaep |
| Offizielle URL | https://chromewebstore.google.com/detail/viewport-detector/fpfdmgaahiocnoiaedbppoaipfjiiaep |
| Beschreibung | Viewport detector for bootstrap 3 |
| Dateigröße | 153 KB |
| Installationsanzahl | 430 |
| Aktuelle Version | 0.0.1 |
| Letztes Update | 2014-02-06 |
| Veröffentlichungsdatum | 2014-02-06 |
| Bewertung | 4.00/5 Insgesamt 3 Bewertungen |
| Entwickler | https://bootstraptools.com |
| Zahlungsart | free |
| Unterstützte Sprachen | 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"
}
} | |