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”。
扩展截图
下载Backbone View Inspector扩展crx文件
下载Backbone View Inspector扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 扩展基本信息
| 名称 | |
| 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'"
} | |