recheck-web Demo
One-click change detection of websites.
recheck-web Demo란 무엇입니까?
recheck-web Demo은(는) https://retest.de에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "One-click change detection of websites."입니다.
확장 프로그램 스크린샷
recheck-web Demo 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Save time and effort when testing your web pages: this Chrome extension will show you all website differences. Whether you have to play "spot the difference" or are overwhelmed by changes: Our powerful filter mechanism allows you to quickly find the website changes that are relevant for you. To get a quick tutorial, go to https://retest.de/recheck-web-chrome-extension/ When clicking the button, this extension will send all of the website data to retest (https://retest.de/), where it will be either stored as Golden Master (=snapshot/base-line) for later comparison or compared to an existing Golden Master and the differences be highlighted. You can use either the review GUI or the open source recheck.cli to open the differences report. You can also filter out the differences you don't care about and quickly find relevant changes. This gives you unprecedented power: ignore font changes but not the text. Or ignore content but not CSS. Define your own filters with a simple git-like syntax. While being a very helpful tool on it's own, this is also a convenient demo to show the power of the test automation tool recheck-web. recheck-web is an open source product at https://github.com/retest/recheck-web. You'll need to create a free retest account to use this extension. It needs permission to "Read and change your data on all retest.org sites" to send login data to retest.
확장 프로그램 기본 정보
이름 | recheck-web Demo |
ID | ifbcdobnjihilgldbjeomakdaejhplii |
공식 URL | https://chromewebstore.google.com/detail/recheck-web-demo/ifbcdobnjihilgldbjeomakdaejhplii |
설명 | One-click change detection of websites. |
파일 크기 | 211 KB |
설치 횟수 | 671 |
현재 버전 | 0.9.5 |
최근 업데이트 | 2020-03-24 |
출시 날짜 | 2020-03-24 |
평점 | 4.40/5 총 10 개의 평점 |
개발자 | https://retest.de |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://retest.de/recheck-web-chrome-extension/ |
개인정보 보호 정책 페이지 URL | https://retest.de/privacy-policy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "recheck-web Demo", "version": "0.9.5", "manifest_version": 2, "description": "One-click change detection of websites.", "permissions": [ "activeTab", "https:\/\/*.retest.org\/", "https:\/\/*.retest.de\/" ], "browser_action": { "default_icon": "icon.png", "tooltip": "Click to create a Golden Master or a difference report of this website." }, "background": { "scripts": [ "full-page-screen-capture-api.js", "background.js" ], "persistent": true }, "web_accessible_resources": [ "login.html", "login.js", "keycloak.min.js" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |