Basis.js Devtools

Developer tools plugin to embed Basis.js app inspector

Basis.js Devtoolsคืออะไร?

Basis.js Devtools เป็นส่วนขยายของ Chrome ที่พัฒนาโดย basisjs-chrome-plugin และคุณลักษณะหลักของมันคือ "Developer tools plugin to embed Basis.js app inspector"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Basis.js Devtools

ดาวน์โหลดไฟล์ส่วนขยาย 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                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Basis.js Devtools Basis.js Devtools
ID paeokpmlopbdaancddhdhmfepfhcbmek
URL อย่างเป็นทางการ 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"
            ]
        }
    ]
}