ChromeStrap
Displays a popup window showing the current Bootstrap 3 breakpoint when resizing your browser window
Was ist ChromeStrap?
ChromeStrap ist eine Chrome-Erweiterung, die von WiredUK entwickelt wurde, und ihr Hauptmerkmal ist "Displays a popup window showing the current Bootstrap 3 breakpoint when resizing your browser window".
Erweiterungsscreenshots
ChromeStrap-Erweiterungs-CRX-Datei herunterladen
Laden Sie ChromeStrap-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | dlfjcpgdebmdmlcljfpbpmkdipdmkcof |
| Offizielle URL | https://chromewebstore.google.com/detail/chromestrap/dlfjcpgdebmdmlcljfpbpmkdipdmkcof |
| Beschreibung | Displays a popup window showing the current Bootstrap 3 breakpoint when resizing your browser window |
| Dateigröße | 49.66 KB |
| Installationsanzahl | 34 |
| Aktuelle Version | 1.0 |
| Letztes Update | 2015-01-14 |
| Veröffentlichungsdatum | 2015-01-13 |
| Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
| Entwickler | WiredUK |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/WiredUK/ChromeStrap |
| Unterstützte Sprachen | 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"
}
} | |