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ファイルをダウンロード
Catch Ups Survey Assistant拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [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" ] } |