Save Images to Drive

Allow to Save images from web page to your Drive

ما هو Save Images to Drive؟

Save Images to Drive هو إضافة Chrome تم تطويرها بواسطة Armen Stepanyan، والميزة الرئيسية لها هي "Allow to Save images from web page to your Drive".

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

تحميل ملف CRX للإضافة Save Images to Drive

قم بتنزيل ملفات الامتداد Save Images to Drive بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        Save images from web pages to your Drive.  Adds a right-click context menu, you can save images by right clicking on images and selecting 'Save to Drive' option. After that, it will open modal window, where you can see 'Save' button and images info(width, height).                    

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

الاسم Save Images to Drive Save Images to Drive
ID nhipbdnhkdgblcdeehpfjbadpehnjged
عنوان URL الرسمي https://chrome.google.com/webstore/detail/save-images-to-drive/nhipbdnhkdgblcdeehpfjbadpehnjged
الوصف Allow to Save images from web page to your Drive
حجم الملف 91.3 KB
عدد التثبيتات 1,000
النسخة الحالية 1.0.0
آخر تحديث 2021-03-14
تاريخ النشر 2017-12-24
تقييم 4.00/5 مجموع تقييمات 9
المطور Armen Stepanyan
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة http://site-blocker.info/product/save-image-to-google-drive-extension
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "1.0.0",
    "name": "Save Images to Drive",
    "description": "Allow to Save images from web page to your Drive",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; https:\/\/apis.google.com; object-src 'self'",
    "browser_action": {
        "default_icon": "drive_icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-2.2.4.js",
                "content_script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "drive_icon_32.png",
        "48": "drive_icon.png",
        "128": "drive_icon_128.png"
    }
}