ChromeStrap

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

什么是ChromeStrap?

ChromeStrap是由WiredUK开发的Chrome扩展程序,该扩展的主要功能是“Displays a popup window showing the current Bootstrap 3 breakpoint when resizing your browser window”。

扩展截图

screenshot

下载ChromeStrap扩展crx文件

下载ChromeStrap扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
    }
}