AMS Auto Fill
This is an chrome Extension which helps user to auto fill a form based on json input.
ما هو AMS Auto Fill؟
AMS Auto Fill هو إضافة Chrome تم تطويرها بواسطة Fusion SD، والميزة الرئيسية لها هي "This is an chrome Extension which helps user to auto fill a form based on json input.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة AMS Auto Fill
قم بتنزيل ملفات الامتداد AMS Auto Fill بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
معلومات أساسية عن التمديد
الاسم | |
ID | goleodhjeigcnckfjlfgflcpohmmkapp |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/ams-auto-fill/goleodhjeigcnckfjlfgflcpohmmkapp |
الوصف | This is an chrome Extension which helps user to auto fill a form based on json input. |
حجم الملف | 11.62 KB |
عدد التثبيتات | 174 |
النسخة الحالية | 1.2.2 |
آخر تحديث | 2016-11-14 |
تاريخ النشر | 2016-11-14 |
تقييم | 4.00/5 مجموع تقييمات 3 |
المطور | Fusion SD |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "AMS Auto Fill", "short_name": "AMS", "description": "This is an chrome Extension which helps user to auto fill a form based on json input.", "version": "1.2.2", "offline_enabled": true, "background": { "persistent": false, "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/rollsroycemotorcars.force.com\/*" ], "js": [ "content.js" ], "all_frames": false } ], "permissions": [ "tabs", "clipboardRead", "clipboardWrite", "activeTab" ], "page_action": { "default_icon": { "16": "images\/icon16.png", "24": "images\/icon24.png", "32": "images\/icon32.png" }, "default_title": "AMS Auto Fill", "default_popup": "popup.html" } } |