SKIM Survey Assistant

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

SKIM Survey Assistant क्या है?

SKIM Survey Assistant SKIM Developers द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A chrome extension to help with (re)filling questions with answers"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में SKIM Survey Assistant एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
            }
        }
    }
}