boysenberry
quick and dirty dev tools
什麼是boysenberry?
boysenberry是由hareesh開發的Chrome擴展程式,該擴展的主要功能是“quick and dirty dev tools”。
擴展截圖
下載boysenberry擴展crx文件
下載boysenberry擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
| 官方網址 | 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"
]
} | |