image-downloader
A webextension to make opening/downloading original(higher quaitiy) images and images organization easier.
Co je image-downloader?
image-downloader je rozšíření Chrome vyvinuté joshua.lin870903, a jeho hlavní funkcí je „A webextension to make opening/downloading original(higher quaitiy) images and images organization easier.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření image-downloader
Stáhněte si soubory rozšíření image-downloader ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | ![]() |
ID | dfddfklkbahiihjnfmpflfblacfjojjl |
Oficiální URL | https://chrome.google.com/webstore/detail/image-downloader/dfddfklkbahiihjnfmpflfblacfjojjl |
Popis | A webextension to make opening/downloading original(higher quaitiy) images and images organization easier. |
Velikost souboru | 20.77 KB |
Počet instalací | 39 |
Aktuální Verze | 0.2.11 |
Poslední Aktualizace | 2019-09-10 |
Datum Vydání | 2019-09-10 |
Vývojář | joshua.lin870903 |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/JoshuaLin0903/image-downloader |
Podporované Jazyky | 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" } } |