Basis.js Devtools
Developer tools plugin to embed Basis.js app inspector
什麼是Basis.js Devtools?
Basis.js Devtools是由basisjs-chrome-plugin開發的Chrome擴展程式,該擴展的主要功能是“Developer tools plugin to embed Basis.js app inspector”。
擴展截圖
下載Basis.js Devtools擴展crx文件
下載Basis.js Devtools擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Extension to hosting Basis.js remote devtools in browser's Developer tools.
Plugins source code: https://github.com/basisjs/browser-plugin
basis.js on the Web:
- Website: http://basisjs.com
- GitHub: http://github.com/basisjs/basisjs 擴展基本資訊
| 名稱 | |
| ID | paeokpmlopbdaancddhdhmfepfhcbmek |
| 官方網址 | https://chromewebstore.google.com/detail/basisjs-devtools/paeokpmlopbdaancddhdhmfepfhcbmek |
| 簡介 | Developer tools plugin to embed Basis.js app inspector |
| 檔案大小 | 13.89 KB |
| 安裝次數 | 51 |
| 目前版本 | 2.0.0 |
| 更新時間 | 2016-08-29 |
| 上架時間 | 2016-08-29 |
| 評分 | 5.00/5 共 6 次評分 |
| 開發者 | basisjs-chrome-plugin |
| 付費類型 | free |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Basis.js Devtools",
"version": "2.0.0",
"description": "Developer tools plugin to embed Basis.js app inspector",
"devtools_page": "index.html",
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"manifest_version": 2,
"permissions": [
"tabs",
"contextMenus",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"icons": {
"32": "img\/icon32x32.png",
"128": "img\/icon128x128.png"
},
"background": {
"scripts": [
"src\/background.js"
]
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*"
],
"js": [
"src\/helpers.js",
"src\/page.js"
]
}
]
} | |