Basis.js Devtools
Developer tools plugin to embed Basis.js app inspector
What is Basis.js Devtools?
Basis.js Devtools is a Chrome extension developed by basisjs-chrome-plugin, and its main feature is "Developer tools plugin to embed Basis.js app inspector".
Extension Screenshots
Download Basis.js Devtools Extension CRX File
Download Basis.js Devtools extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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 Extension Basic Information
| Name | |
| ID | paeokpmlopbdaancddhdhmfepfhcbmek |
| Official URL | https://chromewebstore.google.com/detail/basisjs-devtools/paeokpmlopbdaancddhdhmfepfhcbmek |
| Description | Developer tools plugin to embed Basis.js app inspector |
| File Size | 13.89 KB |
| Installation Count | 51 |
| Current Version | 2.0.0 |
| Last Updated | 2016-08-29 |
| Publish Date | 2016-08-29 |
| Rating | 5.00/5 Total 6 Ratings |
| Developer | basisjs-chrome-plugin |
| Payment Type | free |
| Supported Languages | 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"
]
}
]
} | |