Laravel TestTools

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

Co to jest Laravel TestTools?

Laravel TestTools to rozszerzenie Chrome opracowane przez Marcel Pociot, a jego główną funkcją jest „Chrome extension to generate Laravel integration tests while using your app.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Laravel TestTools

Pobierz pliki rozszerzeń Laravel TestTools w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Laravel TestTools Laravel TestTools
ID ddieaepnbjhgcbddafciempnibnfnakl
Oficjalny URL https://chromewebstore.google.com/detail/laravel-testtools/ddieaepnbjhgcbddafciempnibnfnakl
Opis Chrome extension to generate Laravel integration tests while using your app.
Rozmiar pliku 449 KB
Liczba instalacji 20,000
Aktualna Wersja 0.3.1
Ostatnia Aktualizacja 2018-06-27
Data Publikacji 2018-06-27
Ocena 4.85/5 Łącznie 67 Oceny
Deweloper Marcel Pociot
Typ Płatności free
Strona Rozszerzenia http://marcelpociot.de/blog/2016-03-21-laravel-testtools
Obsługiwane Języki 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"
    ]
}