The Verge Mini
Read the latest articles from The Verge straight from your Chrome toolbar.
The Verge Mini란 무엇입니까?
The Verge Mini은(는) Superannuater에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Read the latest articles from The Verge straight from your Chrome toolbar."입니다.
확장 프로그램 스크린샷
The Verge Mini 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Read the latest articles from The Verge straight from your Chrome toolbar. Receive a pop-up notification if you've got a reply or recommend wherever you are on your browser. Watch the latest Verge videos. View and comment on articles and forum posts.
확장 프로그램 기본 정보
이름 | The Verge Mini |
ID | hjfidodgpaocpiliegpplghoobenilcj |
공식 URL | https://chromewebstore.google.com/detail/the-verge-mini/hjfidodgpaocpiliegpplghoobenilcj |
설명 | Read the latest articles from The Verge straight from your Chrome toolbar. |
파일 크기 | 611 KB |
설치 횟수 | 59 |
현재 버전 | 3.95 |
최근 업데이트 | 2013-11-01 |
출시 날짜 | 2013-11-01 |
평점 | 3.86/5 총 7 개의 평점 |
개발자 | Superannuater |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "The Verge Mini", "manifest_version": 2, "version": "3.95", "description": "Read the latest articles from The Verge straight from your Chrome toolbar.", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "http:\/\/www.theverge.com\/*" ], "exclude_matches": [ "http:\/\/www.theverge.com\/forums\/*", "http:\/\/www.theverge.com\/users\/*" ], "all_frames": true, "js": [ "js\/jquery-1.9.1.min.js", "custom\/mobileredirect.js" ], "run_at": "document_start" }, { "matches": [ "http:\/\/mobile.theverge.com\/*" ], "all_frames": true, "js": [ "js\/jquery-1.9.1.min.js", "custom\/backbutton.js" ], "run_at": "document_start" }, { "matches": [ "http:\/\/mobile.theverge.com\/*" ], "all_frames": true, "css": [ "custom\/mystyles.css" ], "js": [ "js\/jquery-1.9.1.min.js", "custom\/myscript.js" ], "run_at": "document_end" }, { "matches": [ "http:\/\/www.theverge.com\/users\/*" ], "all_frames": true, "css": [ "custom\/userpage.css" ], "js": [ "js\/jquery-1.9.1.min.js", "custom\/userpage.js" ], "run_at": "document_end" }, { "matches": [ "http:\/\/www.theverge.com\/forums", "http:\/\/www.theverge.com\/forums\/*" ], "all_frames": true, "js": [ "js\/jquery-1.9.1.min.js", "custom\/forums.js" ], "run_at": "document_end" } ], "browser_action": { "default_icon": "icon16.png", "default_title": "The Verge", "default_popup": "redirect.htm" }, "web_accessible_resources": [ "back.png", "custom\/forums.css", "icon48.png" ], "background": { "page": "notifications\/background.htm" }, "permissions": [ "notifications" ], "content_security_policy": "script-src 'self' https:\/\/www.google.com\/ https:\/\/ssl.google-analytics.com; object-src 'self'" } |