Save Images to Drive

Allow to Save images from web page to your Drive

Save Images to Drive là gì?

Save Images to Drive là một tiện ích mở rộng Chrome được phát triển bởi Armen Stepanyan, và tính năng chính của nó là "Allow to Save images from web page to your Drive".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

Tải xuống tệp CRX của tiện ích mở rộng Save Images to Drive

Tải xuống các tệp mở rộng Save Images to Drive dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Save Images to Drive Save Images to Drive
ID nhipbdnhkdgblcdeehpfjbadpehnjged
URL Chính Thức https://chrome.google.com/webstore/detail/save-images-to-drive/nhipbdnhkdgblcdeehpfjbadpehnjged
Mô tả Allow to Save images from web page to your Drive
Kích Thước Tệp 91.3 KB
Số Lần Cài Đặt 1,000
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2021-03-14
Ngày Phát Hành 2017-12-24
Đánh Giá 4.00/5 Tổng số 9 Đánh Giá
Nhà Phát Triển Armen Stepanyan
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://site-blocker.info/product/save-image-to-google-drive-extension
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}