Laravel TestTools

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

什麼是Laravel TestTools?

Laravel TestTools是由Marcel Pociot開發的Chrome擴展程式,該擴展的主要功能是“Chrome extension to generate Laravel integration tests while using your app.”。

擴展截圖

screenshot
screenshot

下載Laravel TestTools擴展crx文件

下載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
官方網址 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"
    ]
}