Catch Ups Survey Assistant
Extension to auto-fill repetitive catch ups survey data
Catch Ups Survey Assistant란 무엇입니까?
Catch Ups Survey Assistant은(는) akshaygoel1에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extension to auto-fill repetitive catch ups survey data"입니다.
확장 프로그램 스크린샷
Catch Ups Survey Assistant 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This is a chrome extension developed by Akshay Goel to help the RAs at Virginia Tech complete catch up surveys more efficiently. After an RA fills the survey out one time, the extension will remember your information and auto-fill the survey till the last page. Instructions: 1. Fill out the survey once. 2. Extension will fill it out every other time. 3. If you need to change your residence hall or name, click the red 'Clear stored details' button! --Log-- 4/12/2017 - Fixed extension loading information onto every non-catch up baseline survey
확장 프로그램 기본 정보
이름 | |
ID | kbdfcbfhkloignfbfgkojkadmelmbbhh |
공식 URL | https://chrome.google.com/webstore/detail/catch-ups-survey-assistan/kbdfcbfhkloignfbfgkojkadmelmbbhh |
설명 | Extension to auto-fill repetitive catch ups survey data |
파일 크기 | 119 KB |
설치 횟수 | 217 |
현재 버전 | 4.0 |
최근 업데이트 | 2017-04-12 |
출시 날짜 | 2017-04-12 |
평점 | 3.29/5 총 7 개의 평점 |
개발자 | akshaygoel1 |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Catch Ups Survey Assistant", "description": "Extension to auto-fill repetitive catch ups survey data", "version": "4.0", "browser_action": { "default_icon": "images\/icon.png", "default_popup": "html\/popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/baseline.campuslabs.com\/*" ], "js": [ "js\/main.js" ], "css": [ "css\/main.css" ] } ], "web_accessible_resources": [ "*" ], "permissions": [ "activeTab", "storage", "tabs" ] } |