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
官方網址 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
電子郵箱 [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"
}