ChromeStrap

Displays a popup window showing the current Bootstrap 3 breakpoint when resizing your browser window

ChromeStrap क्या है?

ChromeStrap WiredUK द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Displays a popup window showing the current Bootstrap 3 breakpoint when resizing your browser window"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में ChromeStrap एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Displays a popup window showing the current Bootstrap 3 breakpoint when resizing your browser window

Release History:
Version 1.0:
* Finally at a point where I feel happy calling it v1.0!
* Fixed icon text not showing correctly when switching tabs.
* Redo of some of the event handling so you don't need to F5 when setting options.

Version 0.99:
* Added ability to turn extension off.
* Added ability to whitelist or blacklist the extension to work on certain sites.
* Added text to the toolbar icon to indicate which Bootstrap breakpoint you are currently on.
* Updated version to 0.99, nearly ready for a full 1.0 release!

Version 0.91:
* Tweaked some display styles                    

एक्सटेंशन की मूल जानकारी

नाम ChromeStrap ChromeStrap
ID dlfjcpgdebmdmlcljfpbpmkdipdmkcof
आधिकारिक URL https://chromewebstore.google.com/detail/chromestrap/dlfjcpgdebmdmlcljfpbpmkdipdmkcof
विवरण Displays a popup window showing the current Bootstrap 3 breakpoint when resizing your browser window
फ़ाइल का आकार 49.66 KB
स्थापना संख्या 34
वर्तमान संस्करण 1.0
अंतिम अपडेट 2015-01-14
प्रकाशन तिथि 2015-01-13
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर WiredUK
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/WiredUK/ChromeStrap
समर्थित भाषाएँ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ChromeStrap",
    "description": "Displays a popup window showing the current Bootstrap 3 breakpoint when resizing your browser window",
    "version": "1.0",
    "options_page": "options.html",
    "homepage_url": "https:\/\/github.com\/WiredUK\/ChromeStrap",
    "browser_action": {
        "default_icon": "ChromeStrap.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "ChromeStrap.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "storage",
        "http:\/\/*\/",
        "tabs"
    ],
    "icons": {
        "48": "48Icon.png",
        "128": "128Icon.png"
    }
}