So Hot Right Now
Highlights most viewed articles on www.nytimes.com
So Hot Right Now란 무엇입니까?
So Hot Right Now은(는) Erik Christensen에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Highlights most viewed articles on www.nytimes.com"입니다.
확장 프로그램 스크린샷
So Hot Right Now 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
So Hot Right Now is a Chrome extension that highlights the most viewed articles on the New York Times website (www.nytimes.com). In addition to highlighting the most viewed articles, it also places a "hot" icon next to the articles shared most often on Twitter in the last day.
확장 프로그램 기본 정보
이름 | |
ID | hhbfaeolgndjibdelcbioldnikfilkbg |
공식 URL | https://chrome.google.com/webstore/detail/so-hot-right-now/hhbfaeolgndjibdelcbioldnikfilkbg |
설명 | Highlights most viewed articles on www.nytimes.com |
파일 크기 | 57.17 KB |
설치 횟수 | 15 |
현재 버전 | 2.0.1 |
최근 업데이트 | 2015-09-08 |
출시 날짜 | 2015-09-08 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | Erik Christensen |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "So Hot Right Now", "version": "2.0.1", "description": "Highlights most viewed articles on www.nytimes.com", "manifest_version": 2, "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_icon": { "19": "images\/nytimesred19.png", "38": "images\/nytimesred38.png" }, "default_title": "So Hot Right Now" }, "icons": { "16": "images\/nytimesred16.png", "48": "images\/nytimesred48.png", "128": "images\/nytimesred128.png" }, "permissions": [ "tabs", "http:\/\/www.nytimes.com\/*", "http:\/\/api.nytimes.com\/*", "webNavigation" ], "content_scripts": [ { "matches": [ "http:\/\/www.nytimes.com\/*" ], "js": [ "jquery-1.11.3.min.js", "contentscript.js" ] } ], "web_accessible_resources": [ "images\/hot_big.png", "images\/nytimesred19.png", "images\/nytimesred38.png" ] } |