Auto Survey by KFUEIT Programmers
Automatically fills the KFUEIT university Surveys in no time
¿Qué es Auto Survey by KFUEIT Programmers?
Auto Survey by KFUEIT Programmers es una extensión de Chrome desarrollada por KFUEIT Programmers, y su función principal es "Automatically fills the KFUEIT university Surveys in no time".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Auto Survey by KFUEIT Programmers
Descarga archivos de extensión Auto Survey by KFUEIT Programmers en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
We made this extension to overcome the headache of completing the survey which is too boring task for the students of KFUEIT. We hope that you'll like this extension ❤ If you like this please share it with your fellows. Regards KFUEIT Programmers http://www.facebook.com/KFUEITProgrammers Enjoy :)
Información Básica de la Extensión
Nombre | Auto Survey by KFUEIT Programmers |
ID | dkjbenelofibmfigfhfbnieondamkkek |
URL Oficial | https://chromewebstore.google.com/detail/auto-survey-by-kfueit-pro/dkjbenelofibmfigfhfbnieondamkkek |
Descripción | Automatically fills the KFUEIT university Surveys in no time |
Tamaño del Archivo | 712 KB |
Cantidad de Instalaciones | 369 |
Versión Actual | 3.0 |
Última Actualización | 2020-08-03 |
Fecha de Publicación | 2020-01-26 |
Calificación | 4.85/5 Total de 26 Calificaciones |
Desarrollador | KFUEIT Programmers |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Auto Survey by KFUEIT Programmers", "version": "3.0", "description": "Automatically fills the KFUEIT university Surveys in no time", "manifest_version": 2, "content_scripts": [ { "matches": [ "*:\/\/survey.kfueit.edu.pk\/limesurvey\/index.php\/*" ], "js": [ "jquery-3.4.1.min.js", "AutoSurvey.js" ] } ], "background": { "scripts": [ "jquery-3.4.1.min.js", "background.js" ], "persistent": false }, "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/img16.png", "32": "images\/img32.png", "48": "images\/img48.png", "128": "images\/img128.png" } }, "icons": { "16": "images\/img16.png", "32": "images\/img32.png", "48": "images\/img48.png", "128": "images\/img128.png" }, "permissions": [ "activeTab", "storage" ] } |