image-downloader
A webextension to make opening/downloading original(higher quaitiy) images and images organization easier.
Qu'est-ce que image-downloader ?
image-downloader est une extension Chrome développée par joshua.lin870903, et sa fonction principale est "A webextension to make opening/downloading original(higher quaitiy) images and images organization easier.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension image-downloader
Téléchargez les fichiers d'extension image-downloader au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | ![]() |
ID | dfddfklkbahiihjnfmpflfblacfjojjl |
URL Officiel | https://chrome.google.com/webstore/detail/image-downloader/dfddfklkbahiihjnfmpflfblacfjojjl |
Description | A webextension to make opening/downloading original(higher quaitiy) images and images organization easier. |
Taille du Fichier | 20.77 KB |
Nombre d'Installations | 39 |
Version Actuelle | 0.2.11 |
Dernière Mise à Jour | 2019-09-10 |
Date de Publication | 2019-09-10 |
Développeur | joshua.lin870903 |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/JoshuaLin0903/image-downloader |
Langues Prises en Charge | 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" } } |