SKIM Survey Assistant

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

SKIM Survey Assistantคืออะไร?

SKIM Survey Assistant เป็นส่วนขยายของ Chrome ที่พัฒนาโดย SKIM Developers และคุณลักษณะหลักของมันคือ "A chrome extension to help with (re)filling questions with answers"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย SKIM Survey Assistant

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
            }
        }
    }
}