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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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"
}