Save Images to Drive

Allow to Save images from web page to your Drive

Qu'est-ce que Save Images to Drive ?

Save Images to Drive est une extension Chrome développée par Armen Stepanyan, et sa fonction principale est "Allow to Save images from web page to your Drive".

Captures d'Écran de l'Extension

Télécharger le fichier CRX de l'extension Save Images to Drive

Téléchargez les fichiers d'extension Save Images to Drive au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Save Images to Drive Save Images to Drive
ID nhipbdnhkdgblcdeehpfjbadpehnjged
URL Officiel https://chrome.google.com/webstore/detail/save-images-to-drive/nhipbdnhkdgblcdeehpfjbadpehnjged
Description Allow to Save images from web page to your Drive
Taille du Fichier 91.3 KB
Nombre d'Installations 1,000
Version Actuelle 1.0.0
Dernière Mise à Jour 2021-03-14
Date de Publication 2017-12-24
Évaluation 4.00/5 Total 9 Évaluations
Développeur Armen Stepanyan
Email [email protected]
Type de Paiement free
Site Web de l'Extension http://site-blocker.info/product/save-image-to-google-drive-extension
Langues Prises en Charge 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"
    }
}