Viewport Detector
Viewport detector for bootstrap 3
Viewport Detector क्या है?
Viewport Detector https://bootstraptools.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Viewport detector for bootstrap 3"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Viewport Detector एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | Viewport Detector |
ID | fpfdmgaahiocnoiaedbppoaipfjiiaep |
आधिकारिक URL | https://chromewebstore.google.com/detail/viewport-detector/fpfdmgaahiocnoiaedbppoaipfjiiaep |
विवरण | Viewport detector for bootstrap 3 |
फ़ाइल का आकार | 153 KB |
स्थापना संख्या | 430 |
वर्तमान संस्करण | 0.0.1 |
अंतिम अपडेट | 2014-02-06 |
प्रकाशन तिथि | 2014-02-06 |
रेटिंग | 4.00/5 कुल 3 रेटिंग्स |
डेवलपर | https://bootstraptools.com |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | 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" } } |