Save Images to Drive

Allow to Save images from web page to your Drive

Apa itu Save Images to Drive?

Save Images to Drive adalah ekstensi Chrome yang dikembangkan oleh Armen Stepanyan, dan fitur utamanya adalah "Allow to Save images from web page to your Drive".

Screenshot Ekstensi

Unduh Berkas CRX Ekstensi Save Images to Drive

Unduh file ekstensi Save Images to Drive dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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).                    

Informasi Dasar Ekstensi

Nama Save Images to Drive Save Images to Drive
ID nhipbdnhkdgblcdeehpfjbadpehnjged
URL Resmi https://chrome.google.com/webstore/detail/save-images-to-drive/nhipbdnhkdgblcdeehpfjbadpehnjged
Deskripsi Allow to Save images from web page to your Drive
Ukuran File 91.3 KB
Jumlah Instalasi 1,000
Versi Saat Ini 1.0.0
Terakhir Diperbarui 2021-03-14
Tanggal Publikasi 2017-12-24
Penilaian 4.00/5 Total 9 Penilaian
Pengembang Armen Stepanyan
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi http://site-blocker.info/product/save-image-to-google-drive-extension
Bahasa yang Didukung 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"
    }
}