Looksee

Add borders or shaders to your webpage on the fly. No need to write debug markup to fix layout components.

Looksee क्या है?

Looksee Cullan Luther द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Add borders or shaders to your webpage on the fly. No need to write debug markup to fix layout components."।

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

screenshot
screenshot

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

crx प्रारूप में Looksee एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This extension provides quick borders or shaders to any element on the page. The text field uses jQuery's anything selector or "sizzle selector library" to easily traverse the dom. Works with your local server. Looksee is built to not affect your layout in anyway. If it does please contact me via the support link below.

Examples:

- Typing div into the input field will add a border to every div on the active tab
- Typing * will add border to everything in the html document
- Typing p, h3, div > span will add a border to all p tags, h3 tags, and spans inside of divs

Support:

I would like to make this extension great so please let me know if you find a bug by heading over to the github page https://github.com/Blumed/looksee/issues

* After the first time you install this extension be sure to reload the desired page first, or just open up a new page and go to town *                    

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

नाम Looksee Looksee
ID mbfdhnjobheppodaolenppfegicnhmhp
आधिकारिक URL https://chromewebstore.google.com/detail/looksee/mbfdhnjobheppodaolenppfegicnhmhp
विवरण Add borders or shaders to your webpage on the fly. No need to write debug markup to fix layout components.
फ़ाइल का आकार 45.51 KB
स्थापना संख्या 588
वर्तमान संस्करण 1.5.5
अंतिम अपडेट 2021-11-11
प्रकाशन तिथि 2018-01-31
रेटिंग 5.00/5 कुल 3 रेटिंग्स
डेवलपर Cullan Luther
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://cullanluther.com
सहायता पृष्ठ URL https://github.com/Blumed/looksee/support
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Looksee",
    "description": "Add borders or shaders to your webpage on the fly. No need to write debug markup to fix layout components.",
    "default_locale": "en",
    "version": "1.5.5",
    "offline_enabled": true,
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "permissions": [
        "tabs",
        "",
        "storage",
        "*:\/\/localhost\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "css": [
                "assets\/css\/main.css"
            ],
            "js": [
                "assets\/js\/vendor\/jquery-2.2.3.min.js",
                "assets\/js\/contentScript.js",
                "assets\/js\/outliner.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "assets\/js\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "assets\/images\/icon128.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "assets\/images\/icon16.png",
        "48": "assets\/images\/icon48.png",
        "128": "assets\/images\/icon128.png"
    }
}