Laravel TestTools

Chrome extension to generate Laravel integration tests while using your app.

Laravel TestToolsคืออะไร?

Laravel TestTools เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Marcel Pociot และคุณลักษณะหลักของมันคือ "Chrome extension to generate Laravel integration tests while using your app."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Laravel TestTools

ดาวน์โหลดไฟล์ส่วนขยาย Laravel TestTools ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Create your Laravel integration tests while you surf on your website.

Important note: If you want to use the new "Import Factories" feature, you need to manually allow the chrome extension to access file URLs.
You can do so by visiting chrome://extensions , search for the "Laravel TestTools" extension and activate the checkbox "Allow access to file URLs".                    

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

ชื่อ Laravel TestTools Laravel TestTools
ID ddieaepnbjhgcbddafciempnibnfnakl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/laravel-testtools/ddieaepnbjhgcbddafciempnibnfnakl
คำอธิบาย Chrome extension to generate Laravel integration tests while using your app.
ขนาดไฟล์ 449 KB
จำนวนการติดตั้ง 20,000
เวอร์ชันปัจจุบัน 0.3.1
อัปเดตครั้งล่าสุด 2018-06-27
วันที่เผยแพร่ 2018-06-27
คะแนน 4.85/5 รวมทั้งหมด 67 คะแนน
ผู้พัฒนา Marcel Pociot
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://marcelpociot.de/blog/2016-03-21-laravel-testtools
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Laravel TestTools",
    "description": "Chrome extension to generate Laravel integration tests while using your app.",
    "version": "0.3.1",
    "devtools_page": "html\/devtools.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "permissions": [
        "",
        "contextMenus",
        "storage",
        "clipboardWrite"
    ]
}