SKIM Survey Assistant
A chrome extension to help with (re)filling questions with answers
¿Qué es SKIM Survey Assistant?
SKIM Survey Assistant es una extensión de Chrome desarrollada por SKIM Developers, y su función principal es "A chrome extension to help with (re)filling questions with answers".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión SKIM Survey Assistant
Descarga archivos de extensión SKIM Survey Assistant 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
An extension for chrome to help with completing Sawtooth Lighthouse Surveys. Will store (and auto-load) answers previously entered and by activating the extension it will autofill and submit all question on the current page Currently supports the following question types (saving, storing, auto-filling): - Select - Numeric - Open End - Grid - MaxDiff - CBC (+ Dual None)
Información Básica de la Extensión
Nombre | SKIM Survey Assistant |
ID | nncjiehfaochnfgmbhkoicmhoifdbeea |
URL Oficial | https://chromewebstore.google.com/detail/skim-survey-assistant/nncjiehfaochnfgmbhkoicmhoifdbeea |
Descripción | A chrome extension to help with (re)filling questions with answers |
Tamaño del Archivo | 77.46 KB |
Cantidad de Instalaciones | 59 |
Versión Actual | 1.1 |
Última Actualización | 2019-12-12 |
Fecha de Publicación | 2019-12-10 |
Calificación | 1.00/5 Total de 1 Calificaciones |
Desarrollador | SKIM Developers |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "SKIM Survey Assistant", "short_name": "SSA", "version": "1.1", "description": "A chrome extension to help with (re)filling questions with answers", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "page_action": { "default_icon": { "16": "icons\/icon16.png", "24": "icons\/icon48.png", "32": "icons\/icon128.png" }, "default_title": "Survey Assistent" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "declarativeContent", "activeTab", "storage" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "jquery-2.1.4.min.js", "global.js", "onPageLoad.js" ] } ], "commands": { "_execute_page_action": { "suggested_key": { "default": "Ctrl+L", "windows": "Ctrl+L", "mac": "Alt+L" } } } } |