One-click Downloader
Download images from one-click hosting services without external tools or additional 3rd-party software.
One-click Downloader란 무엇입니까?
One-click Downloader은(는) Dirk Sohler에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Download images from one-click hosting services without external tools or additional 3rd-party software."입니다.
확장 프로그램 스크린샷
One-click Downloader 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Development of this extension was stopped on January 30, 2021. The extension will function as long as there are no incompatible API changes. The download functionality will be broken when the hosters change their sites. Description ----------- This Chrome/Chromium extension allows you to mass-download images from common one-click hosters (like ImageVenue, imgur, ImageBam, etc.) usually used on various image boards and websites. This extension comes fully localized in German and English and does not need any 3rd-party applications installed on the computer. All you need is your web browser and this extension! Usage ----- You might want to set up Chrome so it does not ask where to store the downloads but automatically downloads them without bringing up the save-as dialog. 1. Open the tabs you want to scrape 2. Run the extension 3. Select the tabs from the tabs list and click “Scrape tabs” 4. Select the links of the images you want to download, or select all of them 5. When set: Enter the download path relative from you default download folder 6. Click “Download images” and wait until all images are downloaded 7. Close the window or start over It is possible to “shift select” the entries in the tabs list or in the images list after scraping. Simply click a checkbox to set it to a state of your liking and then shift-click another checkbox to check all checkboxes between the initially clicked checkbox and the shift-clicked checkbox to the same state. There are also some variables to use for the file name or the download path. See “Variables Help” from the images download section of the extension. Currently supported hosters --------------------------- Because of Googles automatic service for detecting malicious extensions always detecting the list of supported hosters as a *false positive* it is not possible to provide a list of supported hosters anymore in the extension description for checking if the extension matches the intended use case. Listing the hosters via the extension’s configuration after installing the extension is not affected by this. Add hosters ------------------- Adding hosters needs some Javascript. A technical documentation on how to do this is available in `downloader/hosters.js`. A word on permissions --------------------- This extension uses some permissionsthat might be seen as critical by some users. Besides the fact that interested users can check the extension’s code at GitLab, the following permissions are needed. 1. **tabs** for extracting the page’s title and collecting the tab ID for injecting the necessary Javascript code for image collection. 2. **downloads** to initiate the image downloads. 3. **storage** for reading and writing the extension’s options. 4. **all_urls** because the extension needs “write permission” on all pages for injecting the necessary Javascript code for image collection. Feel free to analyze the code at GitLab. A word on the version number ---------------------------- The version number is actually not only a version number. It is a version string which contains two informations. The first quarter is the version number without dots (1.2.3 becomes 123). The second to fourth quarter represents the date of when the last hoster was added to the “database”. It written in ISO 8601 format (YYYY-MM-DD) without leading zeros and dashes replaced by dots (2015-05-21 becomes 2015.5.21). The Chrome Web Store uses the version string and displays it correctly (Version number, space, date). Bugs ---- Sometimes the images get not recognized the first time. I set a short waiting period for chrome inserting the necessary Javascript code to the website displayed in the selected tab(s), but sometimes it takes too long. Simply restart the process and the images will be there.
확장 프로그램 기본 정보
이름 | |
ID | efjodfcplkcccafghgnbnpgedgakohog |
공식 URL | https://chrome.google.com/webstore/detail/one-click-downloader/efjodfcplkcccafghgnbnpgedgakohog |
설명 | Download images from one-click hosting services without external tools or additional 3rd-party software. |
파일 크기 | 46.44 KB |
설치 횟수 | 20,000 |
현재 버전 | 127.2021.08.08 |
최근 업데이트 | 2021-08-08 |
출시 날짜 | 2020-05-21 |
평점 | 3.79/5 총 103 개의 평점 |
개발자 | Dirk Sohler |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://chrome.google.com/webstore/detail/one-click-downloader/efjodfcplkcccafghgnbnpgedgakohog |
도움말 페이지 URL | https://chrome.google.com/webstore/detail/one-click-downloader/efjodfcplkcccafghgnbnpgedgakohog |
지원되는 언어 | de,en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "127.2021.08.08", "default_locale": "en", "name": "__MSG_appName__", "short_name": "__MSG_appNameShort__", "version_name": "1.2.7 2021-08-08", "description": "__MSG_appDesc__", "homepage_url": "https:\/\/chrome.google.com\/webstore\/detail\/one-click-downloader\/efjodfcplkcccafghgnbnpgedgakohog", "minimum_chrome_version": "80", "options_ui": { "page": "options\/options.html" }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "window.js" ], "persistent": false }, "browser_action": { "default_icon": "icons\/icon128.png" }, "permissions": [ "tabs", "downloads", "storage", " |