Viewport Detector
Viewport detector for bootstrap 3
Cos'è Viewport Detector?
Viewport Detector è un'estensione di Chrome sviluppata da https://bootstraptools.com, e la sua funzione principale è "Viewport detector for bootstrap 3".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Viewport Detector
Scarica i file di estensione Viewport Detector 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
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.
Informazioni di Base sull'Estensione
Nome | Viewport Detector |
ID | fpfdmgaahiocnoiaedbppoaipfjiiaep |
URL Ufficiale | https://chromewebstore.google.com/detail/viewport-detector/fpfdmgaahiocnoiaedbppoaipfjiiaep |
Descrizione | Viewport detector for bootstrap 3 |
Dimensione del File | 153 KB |
Conteggio Installazioni | 430 |
Versione Corrente | 0.0.1 |
Ultimo Aggiornamento | 2014-02-06 |
Data di Pubblicazione | 2014-02-06 |
Valutazione | 4.00/5 Totale 3 Valutazioni |
Sviluppatore | https://bootstraptools.com |
Tipo di Pagamento | free |
Lingue Supportate | 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" } } |