Backbone View Inspector

This extension will track the backbone views

Backbone View Inspector란 무엇입니까?

Backbone View Inspector은(는) kgopi에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension will track the backbone views"입니다.

확장 프로그램 스크린샷

screenshot

Backbone View Inspector 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Backbone view inspector helps you to find out the Backbone views (script file url and view name) powering the DOM elements.

Data displayed includes:
- Views count: Banner text indicates the number of Backbone views exists in the current page.
- Views meta data: Backbone view URL(name) will be shown as tooltip on hover of element.

________________________________________
________________________________________

Git hub location:: https://github.com/kgopi/BackboneViewInspector                    

확장 프로그램 기본 정보

이름 Backbone View Inspector Backbone View Inspector
ID abbohodoifkfgoeggpgdcepfkoghoaam
공식 URL https://chromewebstore.google.com/detail/backbone-view-inspector/abbohodoifkfgoeggpgdcepfkoghoaam
설명 This extension will track the backbone views
파일 크기 117 KB
설치 횟수 192
현재 버전 0.1.5
최근 업데이트 2017-03-08
출시 날짜 2017-03-08
평점 2.50/5 총 2 개의 평점
개발자 kgopi
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Backbone View Inspector",
    "description": "This extension will track the backbone views",
    "version": "0.1.5",
    "browser_action": {
        "default_icon": {
            "16": "images\/16\/inactive.png",
            "19": "images\/19\/inactive.png",
            "48": "images\/48\/inactive.png"
        },
        "default_title": "Track Backbone views powering the page"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "css": [
                "css\/jquery.qtip.min.css",
                "css\/app.css"
            ],
            "js": [
                "js\/lib\/jquery-1.10.0.min.js",
                "js\/lib\/jquery.qtip.min.js",
                "js\/app.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "web_accessible_resources": [
        "js\/*",
        "template\/*"
    ],
    "icons": {
        "16": "icons\/16.png",
        "19": "icons\/19.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}