FeatherTest - Website Automated Tests

Fast and easy Website Automated Testing and Macros for Google Chrome

FeatherTest - Website Automated Testsとは何ですか?

FeatherTest - Website Automated Testsはhttps://xaviesteve.comによって開発されたChromeの拡張機能で、その主な機能は「Fast and easy Website Automated Testing and Macros for Google Chrome」です。

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

screenshot
screenshot

FeatherTest - Website Automated Tests拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        FeatherTest is a free, open source Google Chrome extension to serve as a quick way to build simple tests and automate processes, you can also use it to register accounts or fill forms with data. It is really flexible, you can use any JavaScript and jQuery code to write your tests, doesn't need any server setup and once the test is written anyone in the team can run them from their browsers.

Documentation and examples: http://xaviesteve.com/5302/feathertest-automated-website-testing-extension-google-chrome

Source code: https://github.com/luckyshot/feathertest                    

拡張機能の基本情報

名前 FeatherTest - Website Automated Tests FeatherTest - Website Automated Tests
ID cpconfnklmionglnfabhmpckegbjdbfe
公式URL https://chromewebstore.google.com/detail/feathertest-website-autom/cpconfnklmionglnfabhmpckegbjdbfe
説明 Fast and easy Website Automated Testing and Macros for Google Chrome
ファイルサイズ 43.4 KB
インストール数 280
現在のバージョン 1.0.6
最終更新日 2015-12-14
公開日 2015-12-14
評価 3.80/5 合計 5 レビュー
開発者 https://xaviesteve.com
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト http://xaviesteve.com/5302/feathertest-automated-website-testing-extension-google-chrome
ヘルプページのURL https://github.com/luckyshot/feathertest/issues
プライバシーポリシーページのURL https://xaviesteve.com/legal
対応言語 en
manifest.json
{
    "version": "1.0.6",
    "short_name": "FeatherTest",
    "name": "FeatherTest - Website Automated Tests",
    "description": "Fast and easy Website Automated Testing and Macros for Google Chrome",
    "permissions": [
        "tabs",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.js",
                "script.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon24.png",
        "default_popup": "popup.html"
    },
    "content_security_policy": "script-src 'self' https:\/\/www.google.com https:\/\/apis.google.com https:\/\/ssl.google-analytics.com https:\/\/ajax.googleapis.com; object-src https:\/\/www.google.com 'self'",
    "icons": {
        "16": "icon16.png",
        "24": "icon24.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "manifest_version": 2,
    "minimum_chrome_version": "39",
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx"
}