Website AMA
Find answers to your questions from a webpage in natural language
ما هو Website AMA؟
Website AMA هو إضافة Chrome تم تطويرها بواسطة https://aasaanai.com، والميزة الرئيسية لها هي "Find answers to your questions from a webpage in natural language".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Website AMA
قم بتنزيل ملفات الامتداد Website AMA بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Search for the answers to your questions on any webpage. Just ask questions naturally and get the relevant answers from the current website.
معلومات أساسية عن التمديد
الاسم | Website AMA |
ID | ebcbnkpcfdcgmhdponcohphdhhdcpjnm |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/website-ama/ebcbnkpcfdcgmhdponcohphdhhdcpjnm |
الوصف | Find answers to your questions from a webpage in natural language |
حجم الملف | 5.4 MB |
عدد التثبيتات | 42 |
النسخة الحالية | 0.0.1 |
آخر تحديث | 2020-05-13 |
تاريخ النشر | 2020-05-13 |
المطور | https://aasaanai.com |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://aasaanai.com/ |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Website AMA", "version": "0.0.1", "description": "Find answers to your questions from a webpage in natural language", "permissions": [ "activeTab", "declarativeContent" ], "background": { "scripts": [ "src\/background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "src\/content.js" ], "all_frames": true, "run_at": "document_start" } ], "page_action": { "default_title": "A popup will come", "default_popup": "src\/popup.html" }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "manifest_version": 2, "icons": { "16": "images\/get_started16.png", "32": "images\/get_started32.png", "48": "images\/get_started48.png", "128": "images\/get_started128.png" } } |