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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "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

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Pic Grabber एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक URL 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'"
}