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”。

擴展截圖

screenshot

下載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                    

擴展基本資訊

名稱 Catch Ups Survey Assistant Catch Ups Survey Assistant
ID kbdfcbfhkloignfbfgkojkadmelmbbhh
官方網址 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"
    ]
}