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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
    ]
}