Backbone View Inspector

This extension will track the backbone views

Backbone View Inspector là gì?

Backbone View Inspector là một tiện ích mở rộng Chrome được phát triển bởi kgopi, và tính năng chính của nó là "This extension will track the backbone views".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Backbone View Inspector

Tải xuống các tệp mở rộng Backbone View Inspector dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Backbone View Inspector Backbone View Inspector
ID abbohodoifkfgoeggpgdcepfkoghoaam
URL Chính Thức https://chromewebstore.google.com/detail/backbone-view-inspector/abbohodoifkfgoeggpgdcepfkoghoaam
Mô tả This extension will track the backbone views
Kích Thước Tệp 117 KB
Số Lần Cài Đặt 192
Phiên Bản Hiện Tại 0.1.5
Cập Nhật Lần Cuối 2017-03-08
Ngày Phát Hành 2017-03-08
Đánh Giá 2.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển kgopi
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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'"
}