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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add borders or shaders to your webpage on the fly. No need to write debug markup to fix layout components."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Looksee 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}