SKIM Survey Assistant

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

SKIM Survey Assistant란 무엇입니까?

SKIM Survey Assistant은(는) SKIM Developers에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A chrome extension to help with (re)filling questions with answers"입니다.

확장 프로그램 스크린샷

screenshot

SKIM Survey Assistant 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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)                    

확장 프로그램 기본 정보

이름 SKIM Survey Assistant SKIM Survey Assistant
ID nncjiehfaochnfgmbhkoicmhoifdbeea
공식 URL https://chromewebstore.google.com/detail/skim-survey-assistant/nncjiehfaochnfgmbhkoicmhoifdbeea
설명 A chrome extension to help with (re)filling questions with answers
파일 크기 77.46 KB
설치 횟수 59
현재 버전 1.1
최근 업데이트 2019-12-12
출시 날짜 2019-12-10
평점 1.00/5 총 1 개의 평점
개발자 SKIM Developers
이메일 [email protected]
결제 유형 free
지원되는 언어 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"
            }
        }
    }
}