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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον 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 της επέκτασης Pic Grabber

Λήψη αρχείων επέκτασης 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
Επίσημο 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'"
}