Laravel TestTools

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

What is Laravel TestTools?

Laravel TestTools is a Chrome extension developed by Marcel Pociot, and its main feature is "Chrome extension to generate Laravel integration tests while using your app.".

Extension Screenshots

screenshot
screenshot

Download Laravel TestTools Extension CRX File

Download Laravel TestTools 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

                        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".                    

Extension Basic Information

Name Laravel TestTools Laravel TestTools
ID ddieaepnbjhgcbddafciempnibnfnakl
Official URL https://chromewebstore.google.com/detail/laravel-testtools/ddieaepnbjhgcbddafciempnibnfnakl
Description Chrome extension to generate Laravel integration tests while using your app.
File Size 449 KB
Installation Count 20,000
Current Version 0.3.1
Last Updated 2018-06-27
Publish Date 2018-06-27
Rating 4.85/5 Total 67 Ratings
Developer Marcel Pociot
Payment Type free
Extension Website http://marcelpociot.de/blog/2016-03-21-laravel-testtools
Supported Languages 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"
    ]
}