Save Images to Drive

Allow to Save images from web page to your Drive

Cos'è Save Images to Drive?

Save Images to Drive è un'estensione di Chrome sviluppata da Armen Stepanyan, e la sua funzione principale è "Allow to Save images from web page to your Drive".

Screenshot dell'Estensione

Scarica il file CRX dell'estensione Save Images to Drive

Scarica i file di estensione Save Images to Drive in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Save Images to Drive Save Images to Drive
ID nhipbdnhkdgblcdeehpfjbadpehnjged
URL Ufficiale https://chrome.google.com/webstore/detail/save-images-to-drive/nhipbdnhkdgblcdeehpfjbadpehnjged
Descrizione Allow to Save images from web page to your Drive
Dimensione del File 91.3 KB
Conteggio Installazioni 1,000
Versione Corrente 1.0.0
Ultimo Aggiornamento 2021-03-14
Data di Pubblicazione 2017-12-24
Valutazione 4.00/5 Totale 9 Valutazioni
Sviluppatore Armen Stepanyan
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://site-blocker.info/product/save-image-to-google-drive-extension
Lingue Supportate 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"
    }
}