Đánh giá cho Double-click Image Downloader
Double-click Image Downloader bởi Marnes
183 đánh giá
- Xếp hạng 3 trong số 5bởi Người dùng Firefox 14944271, 5 năm trướcHow can I get the double click download working?
And how could the hover arrow be shown on images only instead in the middle of the page?
---------------------------------------------------------------------------
Edit: Alright, thank you very much!Phản hồi của nhà phát triển
đã đăng 5 năm trướcYou may need to reload a page the first time after installing this addon. Double-clicking a regular image just works by itself (note that not everything that looks like a regular image on your screen will be detected as such, but the vast majority will be). The hover button also does not just show in the middle of the page in normal circumstances. but on an image. If this is your experience, you're testing it on just 1 website, and one that happens to do odd things this addon can't support with images. Please try it on other sites too before judging, or open a ticket on gitlab (or email me) and at least link me to the page so I can have a look. - Xếp hạng 5 trong số 5bởi Mullins, 5 năm trước
- Xếp hạng 5 trong số 5bởi Barely, 5 năm trước
- Xếp hạng 5 trong số 5bởi KRIS, 5 năm trước
- Xếp hạng 3 trong số 5bởi Gabrielwillames, 5 năm trước
- Xếp hạng 5 trong số 5bởi Antony, 5 năm trước
- Xếp hạng 5 trong số 5bởi Người dùng Firefox 15081723, 5 năm trước
- Xếp hạng 5 trong số 5bởi KxNdrLXKSUPmcImWBIYhr, 5 năm trước
- Xếp hạng 5 trong số 5bởi CASK.exe, 5 năm trước
- Xếp hạng 5 trong số 5bởi nevtelen, 5 năm trước
- Xếp hạng 5 trong số 5bởi SmaugTheDragon, 5 năm trước
- Xếp hạng 3 trong số 5bởi MX, 5 năm trướcDebería de dejar descargar las imágenes de instagram, al menos en Firefox, ya que la forma de descargar las imágenes de la pagina web, no es muy complicado si se accede a la información de la pagina web.
Phản hồi của nhà phát triển
đã đăng 5 năm trướcAssuming the translation by google is correct: I won't build site-specific support into this tool. It's meant to be a generic image downloader that works well on sites with conventional HTML structures that expose images in an accessible way. Instagram is one of those sites with overly complicated, image-hiding webpage structures. I find a 2-star rating just for not working well on instagram a bit superficial since there's so much more to this addon and it works fine on most websites, but ok. - Xếp hạng 5 trong số 5bởi Siddhatehuti, 5 năm trước
- Xếp hạng 5 trong số 5bởi Muhammad, 5 năm trước
- Xếp hạng 5 trong số 5bởi Achraf Noui, 5 năm trướcThis Extension is very helpful for downloading Facebook,Pineterest Pics
- Xếp hạng 4 trong số 5bởi Người dùng Firefox 16033589, 5 năm trước
- Xếp hạng 5 trong số 5bởi Người dùng Firefox 13281061, 5 năm trướcFoda kkkkkkkkkk mas seria melhor se fosse 3 clicks.
- Xếp hạng 5 trong số 5bởi CGC, 5 năm trước
- Xếp hạng 4 trong số 5bởi Người dùng Firefox 15950359, 5 năm trướcSuper fast to save images!
I would like to have an option to auto add a timestamp in filename when saving, to have: timestamp+original filename.
Thank youPhản hồi của nhà phát triển
đã đăng 5 năm trướcThat's not a bad idea, though the exact format will be an issue, and you could achieve this through your file manager and a renaming program, but that's understandably more effort. Maybe I can add y/m/d h/m/s variables that you can use as desired. I'm slogging through technical work on my addons right now and don't expect to work on new features for some time still though. Please follow progress or discuss here: https://gitlab.com/Marnes/doubleclick-image-downloader/-/issues/78 - Xếp hạng 4 trong số 5bởi Người dùng Firefox 12284220, 5 năm trước
- Xếp hạng 5 trong số 5bởi Người dùng Firefox 13064261, 5 năm trước
- Xếp hạng 5 trong số 5bởi Người dùng Firefox 12362519, 5 năm trước
- Xếp hạng 5 trong số 5bởi Người dùng Firefox 12372411, 5 năm trướcNow I can give this a 5 stars since I have finally found an easy to use fix for users that have the problem about images getting saved without an file-extension! (especially images from Twitter) All that's needed is this batch file:
---
@echo off
color 0a
REM Change drive to D:/ because my files are there
REM If yours are on C, you can remove this and change all Ds to Cs
cd /d d:
REM Move only files WITHOUT an extension to TempDirectory
MOVE D:\Downloads\*. D:\TempDirectory\
REM Change directory to TempDirectory
cd D:\TempDirectory
REM Rename all files from "file" to "file.jpg"
ren *.* *.jpg
REM Move files back to origin folder
MOVE D:\TempDirectory\* D:\Downloads
EXIT
---
I know it's not good practice to assume all images are JPEGs but it's enough to view them, which is all I wanted.