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”。
擴展截圖
下載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 |
ID | nncjiehfaochnfgmbhkoicmhoifdbeea |
官方網址 | 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" } } } } |