Marvel Unlimited Enhanced
Improvements to the Marvel Unlimited desktop experience.
Marvel Unlimited Enhanced란 무엇입니까?
Marvel Unlimited Enhanced은(는) Clan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Improvements to the Marvel Unlimited desktop experience."입니다.
확장 프로그램 스크린샷
Marvel Unlimited Enhanced 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This Chrome extension adds some improvements to the Marvel Unlimited desktop experience. All the actions in this extension sync with any other device with your Marvel account. Currently, the features available are: • Currently reading section in the home tab with a progress bar • Badge next to every comic indicating whether they have been read or not • Mark as read/unread button • Sync reading between all devices Disclaimer. Please note that Marvel Unlimited Enhanced is currently in beta and is still undergoing final testing before its official release. Therefore, any bug or inconvenience will not be our responsibility. Use at your own risk.
확장 프로그램 기본 정보
이름 | Marvel Unlimited Enhanced |
ID | lojildlejeoemiiaolmkmfpeknonladk |
공식 URL | https://chromewebstore.google.com/detail/marvel-unlimited-enhanced/lojildlejeoemiiaolmkmfpeknonladk |
설명 | Improvements to the Marvel Unlimited desktop experience. |
파일 크기 | 2.4 MB |
설치 횟수 | 699 |
현재 버전 | 0.1.0 |
최근 업데이트 | 2021-08-31 |
출시 날짜 | 2021-08-31 |
평점 | 3.00/5 총 3 개의 평점 |
개발자 | Clan |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Marvel Unlimited Enhanced", "description": "Improvements to the Marvel Unlimited desktop experience.", "version": "0.1.0", "manifest_version": 2, "background": { "scripts": [ "background.js" ] }, "permissions": [ "https:\/\/medusa.marvel.com\/*", "https:\/\/www.marvel.com\/", "https:\/\/read-api.marvel.com\/issue\/v2\/digitalcomics\/*", "https:\/\/read.marvel.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/www.marvel.com\/comics\/unlimited\/home*" ], "run_at": "document_start", "js": [ "contentMarvelUnlimited.js" ] }, { "matches": [ "https:\/\/www.marvel.com\/comics\/issue\/*" ], "run_at": "document_end", "js": [ "contentIssues.js" ], "css": [ "contentIssues.css" ] }, { "matches": [ "https:\/\/www.marvel.com\/comics\/*" ], "run_at": "document_start", "js": [ "badge.js" ], "css": [ "badge.css" ] }, { "matches": [ "https:\/\/read.marvel.com\/*" ], "js": [ "read.js" ] } ], "externally_connectable": { "matches": [ "https:\/\/www.marvel.com\/comics\/issue\/*" ] }, "web_accessible_resources": [ "markAsRead.js", "read.png" ], "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "32": "icons\/icon32.png", "128": "icons\/icon128.png" } } |