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
官方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"
    ]
}