Red Bull Content Pool
A download manager for the Red Bull Content Pool
Red Bull Content Pool란 무엇입니까?
Red Bull Content Pool은(는) https://www.redbullcontentpool.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A download manager for the Red Bull Content Pool"입니다.
확장 프로그램 스크린샷
Red Bull Content Pool 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The Red Bull Content Pool Media Center extension is a download manager for the Red Bull Content Pool. Use this extension to download albums, stories, photos and videos form the Red Bull Content Pool.
확장 프로그램 기본 정보
이름 | |
ID | bpgcpkljnalipmaeikkkhipdffjijihb |
공식 URL | https://chrome.google.com/webstore/detail/red-bull-content-pool/bpgcpkljnalipmaeikkkhipdffjijihb |
설명 | A download manager for the Red Bull Content Pool |
파일 크기 | 529 KB |
설치 횟수 | 6,080 |
현재 버전 | 2.2.5 |
최근 업데이트 | 2021-11-17 |
출시 날짜 | 2021-03-23 |
평점 | 2.33/5 총 3 개의 평점 |
개발자 | https://www.redbullcontentpool.com |
이메일 | [email protected] |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Red Bull Content Pool", "description": "A download manager for the Red Bull Content Pool", "version": "2.2.5", "browser_action": { "default_icon": { "19": "assets\/icons\/icon19.png", "38": "assets\/icons\/icon38.png" }, "default_popup": "index.html" }, "background": { "scripts": [ "scripts\/background.js" ], "persistent": false }, "icons": { "16": "assets\/icons\/icon16.png", "48": "assets\/icons\/icon48.png", "128": "assets\/icons\/icon128.png" }, "permissions": [ "downloads", "downloads.shelf", "notifications", "storage", "http:\/\/localhost:4000\/*", "https:\/\/www-design.redbullcontentpool.com\/*", "https:\/\/www-staging.redbullcontentpool.com\/*", "https:\/\/www.redbullcontentpool.com\/*" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "content_scripts": [ { "matches": [ "http:\/\/localhost:4000\/*", "https:\/\/www-design.redbullcontentpool.com\/*", "https:\/\/www-staging.redbullcontentpool.com\/*", "https:\/\/www.redbullcontentpool.com\/*" ], "css": [], "js": [ "scripts\/extension.js" ] } ] } |