Laravel TestTools

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

Co je Laravel TestTools?

Laravel TestTools je rozšíření Chrome vyvinuté Marcel Pociot, a jeho hlavní funkcí je „Chrome extension to generate Laravel integration tests while using your app.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Laravel TestTools

Stáhněte si soubory rozšíření Laravel TestTools ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název Laravel TestTools Laravel TestTools
ID ddieaepnbjhgcbddafciempnibnfnakl
Oficiální URL https://chromewebstore.google.com/detail/laravel-testtools/ddieaepnbjhgcbddafciempnibnfnakl
Popis Chrome extension to generate Laravel integration tests while using your app.
Velikost souboru 449 KB
Počet instalací 20,000
Aktuální Verze 0.3.1
Poslední Aktualizace 2018-06-27
Datum Vydání 2018-06-27
Hodnocení 4.85/5 Celkem 67 Hodnocení
Vývojář Marcel Pociot
Typ Platby free
Webové stránky Rozšíření http://marcelpociot.de/blog/2016-03-21-laravel-testtools
Podporované Jazyky 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"
    ]
}