Grab 'n Tag

Batch-download and name images according to their content.

Τι είναι το Grab 'n Tag;

Το Grab 'n Tag είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Unknown, και η κύρια λειτουργία του είναι "Batch-download and name images according to their content.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Grab 'n Tag

Λήψη αρχείων επέκτασης Grab 'n Tag σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Ever want to grab all the images off a webpage without having to click through them individually? Have other batch download tools fallen short by naming your downloaded images with non-descriptive random letters and numbers? This tool is for you!

To use:
1. Navigate to any page that contains images
2. Click the Grab 'n Tag icon at the top right of your browser
3. Type in a single tag to search for (e.g. dog)
- type "all" or leave the search box blank to download all images on the page
4. Click "Grab!" or hit enter
5. Watch as all the images that are identified with your search term are automatically named and downloaded

Background:

Grab 'n Tag makes use a form of machine learning known as an Artificial Neural Network (ANN) to analyze images on the web-page. The ANN is trained to be highly accurate by feeding it large volumes of sample data, in this case, images which have already been tagged with for their content. Once trained, the ANN analyzes individual images and returns lists of tags that it believes are associated with them.

Our own ANN server is in development so in the meantime Grab 'n Tag makes use of Clarifai's image recognition API to get tags associated with images.

Grab 'n Tag features a non-intrusive interface to enter your search terms to filter your batch download.

icon credit goes to http://www.freepik.com licensed by http://creativecommons.org/licenses/by/3.0/                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Grab 'n Tag Grab 'n Tag
ID kmogilfibnkhjchkcojfafcnddbcpdeb
Επίσημο URL https://chromewebstore.google.com/detail/grab-n-tag/kmogilfibnkhjchkcojfafcnddbcpdeb
Περιγραφή Batch-download and name images according to their content.
Μέγεθος Αρχείου 41.52 KB
Αριθμός Εγκαταστάσεων 252
Τρέχουσα Έκδοση 1.0.3
Τελευταία Ενημέρωση 2016-09-29
Ημερομηνία Δημοσίευσης 2016-09-29
Αξιολόγηση 3.50/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής Unknown
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/KChristP/GrabNTag
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/KChristP/GrabNTag
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Grab 'n Tag",
    "description": "Batch-download and name images according to their content.",
    "version": "1.0.3",
    "browser_action": {
        "default_icon": "icon_16.png",
        "default_popup": "popup.html"
    },
    "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'",
    "background": {
        "scripts": [
            "background.js",
            "jquery-3.1.1.min.js"
        ]
    },
    "permissions": [
        "activeTab",
        "downloads"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js",
                "jquery-3.1.1.min.js"
            ]
        }
    ],
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    }
}