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"입니다.
확장 프로그램 스크린샷
ChromeStrap 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
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" } } |