FeatherTest - Website Automated Tests

Fast and easy Website Automated Testing and Macros for Google Chrome

FeatherTest - Website Automated Tests là gì?

FeatherTest - Website Automated Tests là một tiện ích mở rộng Chrome được phát triển bởi https://xaviesteve.com, và tính năng chính của nó là "Fast and easy Website Automated Testing and Macros for Google Chrome".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng FeatherTest - Website Automated Tests

Tải xuống các tệp mở rộng FeatherTest - Website Automated Tests dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên FeatherTest - Website Automated Tests FeatherTest - Website Automated Tests
ID cpconfnklmionglnfabhmpckegbjdbfe
URL Chính Thức https://chromewebstore.google.com/detail/feathertest-website-autom/cpconfnklmionglnfabhmpckegbjdbfe
Mô tả Fast and easy Website Automated Testing and Macros for Google Chrome
Kích Thước Tệp 43.4 KB
Số Lần Cài Đặt 280
Phiên Bản Hiện Tại 1.0.6
Cập Nhật Lần Cuối 2015-12-14
Ngày Phát Hành 2015-12-14
Đánh Giá 3.80/5 Tổng số 5 Đánh Giá
Nhà Phát Triển https://xaviesteve.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://xaviesteve.com/5302/feathertest-automated-website-testing-extension-google-chrome
URL Trang Trợ Giúp https://github.com/luckyshot/feathertest/issues
URL Trang Chính Sách Bảo Mật https://xaviesteve.com/legal
Ngôn Ngữ Được Hỗ Trợ 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"
}