boysenberry
quick and dirty dev tools
boysenberry란 무엇입니까?
boysenberry은(는) hareesh에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "quick and dirty dev tools"입니다.
확장 프로그램 스크린샷
boysenberry 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
boysenberry is a lightweight version of the developer tools that allows you to quickly check out the layout of a page, and inspect the relevant CSS without having to open your developer tools. Most of the time, you just need to check out a few CSS attributes, and opening the dev tools is kind of a hassle. boysenberry also adds shortcuts to copy the style of an element, displays the layout bounds of all elements on a page, and lets you switch between basic and computed style with a few simple shortcuts. after installing, press Ctrl/Cmd + B, or click the icon on any page to activate! Authors: Hareesh Nagaraj https://github.com/hareeshnagaraj/ Dheeraj Manjunath https://github.com/dmanjunath github: https://github.com/hareeshnagaraj/boysenberry
확장 프로그램 기본 정보
이름 | |
ID | odddjldlndamcgopdfcnioipkbpcdphh |
공식 URL | https://chrome.google.com/webstore/detail/boysenberry/odddjldlndamcgopdfcnioipkbpcdphh |
설명 | quick and dirty dev tools |
파일 크기 | 130 KB |
설치 횟수 | 45 |
현재 버전 | 1.1 |
최근 업데이트 | 2014-08-13 |
출시 날짜 | 2014-08-13 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | hareesh |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/hareeshnagaraj/boysenberry |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "boysenberry", "description": "quick and dirty dev tools", "version": "1.1", "background": { "page": "background.html", "persistent": true }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "boysenCSS.css", "animate.css" ], "js": [ "externalJS\/jquery-1.11.1.min.js", "externalJS\/jquery-ui.min.js", "boysenDom.js", "boysenInsertions.js" ], "run_at": "document_end" } ], "browser_action": { "default_icon": "boysenberry_logo.png" }, "permissions": [ "activeTab", "tabs", "https:\/\/*\/*", "http:\/\/*\/*" ], "optional_permissions": [ "clipboardWrite" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "commands": { "show_details": { "suggested_key": { "default": "Ctrl+B", "mac": "Ctrl+B", "windows": "Ctrl+B" }, "description": "toggle details" }, "copy": { "suggested_key": { "default": "Alt+B", "mac": "Alt+B", "windows": "Alt+B" }, "description": "toggle details" }, "toggle_details": { "suggested_key": { "default": "Ctrl+I", "mac": "Ctrl+I", "windows": "Ctrl+I" }, "description": "toggle details" } }, "web_accessible_resources": [ "loading_gif.gif" ] } |