Google Forms Image Viewer

a tool to allow image files to be viewed on a google form response

ما هو Google Forms Image Viewer؟

Google Forms Image Viewer هو إضافة Chrome تم تطويرها بواسطة alex، والميزة الرئيسية لها هي "a tool to allow image files to be viewed on a google form response".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Google Forms Image Viewer

قم بتنزيل ملفات الامتداد Google Forms Image Viewer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Use this tool to render images on your Google forms (like signatures) when you go to print them. When there is a File Upload field in the form, navigate to an Individual response. Click the extension icon and scan for images. If any are found, you'll see them and can print using the Print button.                    

معلومات أساسية عن التمديد

الاسم Google Forms Image Viewer Google Forms Image Viewer
ID hfmflfabnobgcjjbfddlackbpjmnpgij
عنوان URL الرسمي https://chromewebstore.google.com/detail/google-forms-image-viewer/hfmflfabnobgcjjbfddlackbpjmnpgij
الوصف a tool to allow image files to be viewed on a google form response
حجم الملف 5.58 KB
عدد التثبيتات 446
النسخة الحالية 1.0
آخر تحديث 2020-04-28
تاريخ النشر 2020-04-28
تقييم 4.00/5 مجموع تقييمات 3
المطور alex
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Google Forms Image Viewer",
    "version": "1.0",
    "description": "a tool to allow image files to be viewed on a google form response",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/docs.google.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "printing.css"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    }
}