Douga Getter
You can easily download videos from popular video sites. Just click the extension icon, then select the video you want to download.
Douga Getter란 무엇입니까?
Douga Getter은(는) https://www.douga-getter.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "You can easily download videos from popular video sites. Just click the extension icon, then select the video you want to download."입니다.
확장 프로그램 스크린샷
Douga Getter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The Douga Getter provides the functionality to download videos. Detects all the videos on the page opened in the browser and notifies them on the action button. When you click the action button, a list of downloadable videos is displayed, then click the video you want to download. The default setting is not to display video files smaller than 2 MB, so change the setting if necessary. You can also run a simple user-script for each site for downloading. Please note that the Douga Getter is not responsible for media content which you download, so we suggest to ensure the copyright and permissions of the media before downloading. Disclaimer: We are not responsible for any problems caused by using this extension. Also, we do not guarantee the operation of this extension. Please use it at your own risk. The distribution of this extension may be discontinued without prior notice. We are not responsible for dealing with version upgrades, bug fixes, etc. Privacy Policy: We do not save any of your personal information. We will continue to review our handling of personal information in the future so that we can continue offering this service with confidence.
확장 프로그램 기본 정보
이름 | Douga Getter |
ID | hhbcihapcmaemjinlbgafnjjihbdmjnf |
공식 URL | https://chromewebstore.google.com/detail/douga-getter/hhbcihapcmaemjinlbgafnjjihbdmjnf |
설명 | You can easily download videos from popular video sites. Just click the extension icon, then select the video you want to download. |
파일 크기 | 330 KB |
설치 횟수 | 991,760 |
현재 버전 | 3.1.6 |
최근 업데이트 | 2019-11-24 |
출시 날짜 | 2019-11-19 |
평점 | 3.74/5 총 136 개의 평점 |
개발자 | https://www.douga-getter.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.douga-getter.com/ |
개인정보 보호 정책 페이지 URL | https://www.fastestle.com/terms.html |
지원되는 언어 | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Douga Getter", "version": "3.1.6", "author": "DougaGetter", "description": "__MSG_extension_description__", "homepage_url": "https:\/\/www.douga-getter.com\/", "manifest_version": 2, "default_locale": "ja", "background": { "persistent": true, "page": "background.html" }, "browser_action": { "default_icon": { "16": "images\/default_16px_normal.png", "32": "images\/default_16px_normal.png" }, "default_title": "__MSG_action_button_default_title__" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/front.js" ], "run_at": "document_start" }, { "matches": [ "https:\/\/www.douga-getter.com\/loader.html*site=*" ], "js": [ "js\/internal.js" ], "run_at": "document_start" } ], "icons": { "32": "images\/icon_32.png", "128": "images\/icon_128.png" }, "options_ui": { "page": "options.html", "chrome_style": true }, "web_accessible_resources": [ "images\/*" ], "content_security_policy": "default-src 'self' ; img-src 'self' http:\/\/* https:\/\/* data: ; script-src 'self' ; object-src 'self' ; style-src 'self' http:\/\/* https:\/\/* 'unsafe-inline' ; connect-src 'self' http:\/\/* https:\/\/* ;", "permissions": [ "contextMenus", "webRequest", "webRequestBlocking", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ] } |