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
官方網址 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
電子郵箱 [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"
    }
}