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".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة SKIM Survey Assistant
قم بتنزيل ملفات الامتداد SKIM Survey Assistant بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
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" } } } } |