Ghost Inspector - Web Test Recorder

Ghost Inspector extension for recording automated website tests in your browser

Ghost Inspector - Web Test Recorderとは何ですか?

Ghost Inspector - Web Test Recorderはhttps://ghostinspector.comによって開発されたChromeの拡張機能で、その主な機能は「Ghost Inspector extension for recording automated website tests in your browser」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot
screenshot

Ghost Inspector - Web Test Recorder拡張機能のCRXファイルをダウンロード

Ghost Inspector - Web Test Recorder拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Ghost Inspector is an automated browser testing service that allow you to run automated tests on your websites and web applications to ensure that they are functioning properly.

Our web test recorder allows you to record yourself performing actions on your website within your browser, then sync them to the Ghost Inspector service and run them continuously as a regression test.

You can record them on your staging server and execute them through our API when your code changes — or record them on your live site and automatically run them at a set interval to continuously check for issues.

You will need to sign up for a Ghost Inspector account to use our recording tool.                    

拡張機能の基本情報

名前 Ghost Inspector - Web Test Recorder Ghost Inspector - Web Test Recorder
ID aicdiabnghjnejfempeinmnphllefehc
公式URL https://chromewebstore.google.com/detail/ghost-inspector-web-test/aicdiabnghjnejfempeinmnphllefehc
説明 Ghost Inspector extension for recording automated website tests in your browser
ファイルサイズ 648 KB
インストール数 20,000
現在のバージョン 7.0.3
最終更新日 2023-10-26
公開日 2020-05-27
評価 4.32/5 合計 28 レビュー
開発者 https://ghostinspector.com
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://ghostinspector.com/
ヘルプページのURL https://docs.ghostinspector.com/test-editor/
プライバシーポリシーページのURL https://ghostinspector.com/privacy
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Ghost Inspector - Web Test Recorder",
    "short_name": "Ghost Inspector",
    "author": "Ghost Inspector",
    "description": "Ghost Inspector extension for recording automated website tests in your browser",
    "homepage_url": "https:\/\/ghostinspector.com",
    "version": "7.0.3",
    "manifest_version": 3,
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "action": {
        "default_icon": {
            "16": "images\/toolbar-default-16.png",
            "32": "images\/toolbar-default-32.png"
        },
        "default_title": "Ghost Inspector",
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "all_frames": true,
            "css": [
                "content.css",
                "toastr.css"
            ],
            "js": [
                "vendor.js",
                "content.js"
            ]
        }
    ],
    "minimum_chrome_version": "92",
    "permissions": [
        "storage",
        "tabs",
        "webNavigation"
    ],
    "host_permissions": [
        ""
    ]
}