ChromeStrap
Displays a popup window showing the current Bootstrap 3 breakpoint when resizing your browser window
Co to jest ChromeStrap?
ChromeStrap to rozszerzenie Chrome opracowane przez WiredUK, a jego główną funkcją jest „Displays a popup window showing the current Bootstrap 3 breakpoint when resizing your browser window”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia ChromeStrap
Pobierz pliki rozszerzeń ChromeStrap w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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 Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | dlfjcpgdebmdmlcljfpbpmkdipdmkcof |
| Oficjalny URL | https://chromewebstore.google.com/detail/chromestrap/dlfjcpgdebmdmlcljfpbpmkdipdmkcof |
| Opis | Displays a popup window showing the current Bootstrap 3 breakpoint when resizing your browser window |
| Rozmiar pliku | 49.66 KB |
| Liczba instalacji | 34 |
| Aktualna Wersja | 1.0 |
| Ostatnia Aktualizacja | 2015-01-14 |
| Data Publikacji | 2015-01-13 |
| Ocena | 5.00/5 Łącznie 2 Oceny |
| Deweloper | WiredUK |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/WiredUK/ChromeStrap |
| Obsługiwane Języki | 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"
}
} | |