boysenberry

quick and dirty dev tools

boysenberry क्या है?

boysenberry hareesh द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "quick and dirty dev tools"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में boysenberry एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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                    

एक्सटेंशन की मूल जानकारी

नाम boysenberry 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"
    ]
}