image-downloader

A webextension to make opening/downloading original(higher quaitiy) images and images organization easier.

Cos'è image-downloader?

image-downloader è un'estensione di Chrome sviluppata da joshua.lin870903, e la sua funzione principale è "A webextension to make opening/downloading original(higher quaitiy) images and images organization easier.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione image-downloader

Scarica i file di estensione image-downloader in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        This addon provides an additional context menu. This menu allows easier opening of images, even in the gallery view where such images are harder to access. Furthermore, it ensures the original quality image url is opened.


Other Features:

Prefix feature - to add prefix to the filename while downloading. Users can customize their prefix list in the "Preference" page.

Twitter credit feature - to automatically detect the username of the Twitter post and add it to the filename when downloading images.


Go to "Homepage" for more detail about this addon.                    

Informazioni di Base sull'Estensione

Nome image-downloader image-downloader
ID dfddfklkbahiihjnfmpflfblacfjojjl
URL Ufficiale https://chrome.google.com/webstore/detail/image-downloader/dfddfklkbahiihjnfmpflfblacfjojjl
Descrizione A webextension to make opening/downloading original(higher quaitiy) images and images organization easier.
Dimensione del File 20.77 KB
Conteggio Installazioni 39
Versione Corrente 0.2.11
Ultimo Aggiornamento 2019-09-10
Data di Pubblicazione 2019-09-10
Sviluppatore joshua.lin870903
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/JoshuaLin0903/image-downloader
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "image-downloader",
    "description": "A webextension to make opening\/downloading original(higher quaitiy) images and images organization easier.",
    "version": "0.2.11",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "contextMenus",
        "activeTab",
        "downloads",
        "storage",
        "tabs",
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content_scripts\/menu_info.js"
            ],
            "all_frames": true
        }
    ],
    "options_ui": {
        "page": "settings\/options.html"
    }
}