SKIM Survey Assistant

A chrome extension to help with (re)filling questions with answers

Co je SKIM Survey Assistant?

SKIM Survey Assistant je rozšíření Chrome vyvinuté SKIM Developers, a jeho hlavní funkcí je „A chrome extension to help with (re)filling questions with answers“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření SKIM Survey Assistant

Stáhněte si soubory rozšíření SKIM Survey Assistant ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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)                    

Základní Informace o Rozšíření

Název SKIM Survey Assistant SKIM Survey Assistant
ID nncjiehfaochnfgmbhkoicmhoifdbeea
Oficiální URL https://chromewebstore.google.com/detail/skim-survey-assistant/nncjiehfaochnfgmbhkoicmhoifdbeea
Popis A chrome extension to help with (re)filling questions with answers
Velikost souboru 77.46 KB
Počet instalací 59
Aktuální Verze 1.1
Poslední Aktualizace 2019-12-12
Datum Vydání 2019-12-10
Hodnocení 1.00/5 Celkem 1 Hodnocení
Vývojář SKIM Developers
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
            }
        }
    }
}