Catch Ups Survey Assistant
Extension to auto-fill repetitive catch ups survey data
Catch Ups Survey Assistant क्या है?
Catch Ups Survey Assistant akshaygoel1 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extension to auto-fill repetitive catch ups survey data"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Catch Ups Survey Assistant एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
]
} | |