Save Images to Drive

Allow to Save images from web page to your Drive

Save Images to Driveとは何ですか?

Save Images to DriveはArmen Stepanyanによって開発されたChromeの拡張機能で、その主な機能は「Allow to Save images from web page to your Drive」です。

拡張機能のスクリーンショット

Save Images to Drive拡張機能のCRXファイルをダウンロード

Save Images to Drive拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    }
}