Pic Grabber

An extension to download images from websites, locally. It can be annoying to have to "right click, save image as" on many files.…

什麼是Pic Grabber?

Pic Grabber是由phelan.vendeville開發的Chrome擴展程式,該擴展的主要功能是“An extension to download images from websites, locally. It can be annoying to have to "right click, save image as" on many files.…”。

擴展截圖

screenshot
screenshot

下載Pic Grabber擴展crx文件

下載Pic Grabber擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        An extension to download images from websites, locally. 

It can be annoying to have to "right click, save image as" on many files. To that end, this is an extension which will enable you to download multiple images at once from a webpage by simply clicking the appropriate button in the chrome browser. You can also pick and choose the image to download with a single click. The images must be of a certain size (at least 200px wide) for the extension to pick them up, as we wish to ignore thumbnails. 

Note- this was a little side project of mine to see if I could get an extension up and running. If you have an issue let me know, but there's no SLA on this.

Version 0.0.0.2 contains some fixes for downloading multiple copies of the same image.                    

擴展基本資訊

名稱 Pic Grabber Pic Grabber
ID emgofdikiakfpnahlngbcgnbhimchmbo
官方網址 https://chrome.google.com/webstore/detail/pic-grabber/emgofdikiakfpnahlngbcgnbhimchmbo
簡介 An extension to download images from websites, locally. It can be annoying to have to "right click, save image as" on many files.…
檔案大小 19.57 KB
安裝次數 5,000
目前版本 0.0.0.2
更新時間 2013-11-15
上架時間 2013-11-15
評分 3.60/5 共 42 次評分
開發者 phelan.vendeville
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Pic Grabber",
    "version": "0.0.0.2",
    "permissions": [
        "activeTab",
        "tabs",
        "",
        "background"
    ],
    "content_scripts": [
        {
            "js": [
                "grabber.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Download pictures from this page.",
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}