Catch Ups Survey Assistant

Extension to auto-fill repetitive catch ups survey data

Catch Ups Survey Assistantคืออะไร?

Catch Ups Survey Assistant เป็นส่วนขยายของ Chrome ที่พัฒนาโดย akshaygoel1 และคุณลักษณะหลักของมันคือ "Extension to auto-fill repetitive catch ups survey data"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Catch Ups Survey Assistant

ดาวน์โหลดไฟล์ส่วนขยาย 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
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"
    ]
}