ChromeStrap

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

O que é ChromeStrap?

ChromeStrap é uma extensão do Chrome desenvolvida por WiredUK, e sua principal característica é "Displays a popup window showing the current Bootstrap 3 breakpoint when resizing your browser window".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão ChromeStrap

Baixe arquivos de extensão ChromeStrap no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome ChromeStrap ChromeStrap
ID dlfjcpgdebmdmlcljfpbpmkdipdmkcof
URL Oficial https://chromewebstore.google.com/detail/chromestrap/dlfjcpgdebmdmlcljfpbpmkdipdmkcof
Descrição Displays a popup window showing the current Bootstrap 3 breakpoint when resizing your browser window
Tamanho do Arquivo 49.66 KB
Contagem de Instalações 34
Versão Atual 1.0
Última Atualização 2015-01-14
Data de Publicação 2015-01-13
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor WiredUK
Tipo de Pagamento free
Site da Extensão https://github.com/WiredUK/ChromeStrap
Idiomas Suportados 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"
    }
}