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