ChromeStrap
Displays a popup window showing the current Bootstrap 3 breakpoint when resizing your browser window
ChromeStrap là gì?
ChromeStrap là một tiện ích mở rộng Chrome được phát triển bởi WiredUK, và tính năng chính của nó là "Displays a popup window showing the current Bootstrap 3 breakpoint when resizing your browser window".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng ChromeStrap
Tải xuống các tệp mở rộng ChromeStrap dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | ChromeStrap |
ID | dlfjcpgdebmdmlcljfpbpmkdipdmkcof |
URL Chính Thức | https://chromewebstore.google.com/detail/chromestrap/dlfjcpgdebmdmlcljfpbpmkdipdmkcof |
Mô tả | Displays a popup window showing the current Bootstrap 3 breakpoint when resizing your browser window |
Kích Thước Tệp | 49.66 KB |
Số Lần Cài Đặt | 34 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2015-01-14 |
Ngày Phát Hành | 2015-01-13 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | WiredUK |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/WiredUK/ChromeStrap |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |