Counterstring
simple counterstring generation
Counterstring란 무엇입니까?
Counterstring은(는) eviltesterapps에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "simple counterstring generation"입니다.
확장 프로그램 스크린샷
Counterstring 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
A CounterString is a string of text e.g. `*3*5*7*9*12*15*` where: - the string is a specific length e.g. 15 - the last character in the string is an * - the numbers before each * are the position of the * This can act as Test Data for helping test the length allowed in forms and other data fields. If the value is truncated then you can tell from the numbers and the '*' how long the string is e.g. `*3*5*7*9*12*15` is 14 characters long because the '*' after 15 is missing. CounterStrings are commonly used in exploratory testing. This extension is a simple CounterString generator, which: - displays a dialog asking for the number of characters, - then generates a CounterString of that length - the CounterString is logged to the dev console to allow copy and pasting, - the extension also inserts the CounterString into the value of the field that was selected when the right click context menu was displayed - this supports supports testing online forms. Instructions for use: - right click on and input field - enter value of CounterString - CounterString will be logged to the console (use dev tools to see it) - CounterString will be inserted as the value of the WebElement you clicked on Note: - works with forms on the actual page - this extension does not work with forms embedded in frames This is open source and source can be found at GitHub: - https://github.com/eviltester/counterstringjs
확장 프로그램 기본 정보
이름 | Counterstring |
ID | keklpkmokeicakpclclkdmclhgkklmbd |
공식 URL | https://chromewebstore.google.com/detail/counterstring/keklpkmokeicakpclclkdmclhgkklmbd |
설명 | simple counterstring generation |
파일 크기 | 11.89 KB |
설치 횟수 | 230 |
현재 버전 | 0.1 |
최근 업데이트 | 2019-04-01 |
출시 날짜 | 2019-03-21 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | eviltesterapps |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/eviltester/counterstringjs |
개인정보 보호 정책 페이지 URL | https://www.eviltester.com/page/privacy |
지원되는 언어 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Counterstring", "version": "0.1", "description": "simple counterstring generation", "background": { "persistent": true, "scripts": [ "js\/background.js" ] }, "permissions": [ "contextMenus", "activeTab" ], "icons": { "16": "icons\/icon16x16.png", "48": "icons\/icon48x48.png", "128": "icons\/icon128x128.png" } } |