Save Images to Drive

Allow to Save images from web page to your Drive

Co to jest Save Images to Drive?

Save Images to Drive to rozszerzenie Chrome opracowane przez Armen Stepanyan, a jego główną funkcją jest „Allow to Save images from web page to your Drive”.

Zrzuty ekranu rozszerzenia

Pobierz plik CRX rozszerzenia Save Images to Drive

Pobierz pliki rozszerzeń Save Images to Drive w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Save Images to Drive Save Images to Drive
ID nhipbdnhkdgblcdeehpfjbadpehnjged
Oficjalny URL https://chrome.google.com/webstore/detail/save-images-to-drive/nhipbdnhkdgblcdeehpfjbadpehnjged
Opis Allow to Save images from web page to your Drive
Rozmiar pliku 91.3 KB
Liczba instalacji 1,000
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2021-03-14
Data Publikacji 2017-12-24
Ocena 4.00/5 Łącznie 9 Oceny
Deweloper Armen Stepanyan
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia http://site-blocker.info/product/save-image-to-google-drive-extension
Obsługiwane Języki 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"
    }
}