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ファイルをダウンロード

SKIM Survey Assistant拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
            }
        }
    }
}