MyTwoCents Comment Aggregator
Comment aggregator for Reddit, HackerNews, and Facebook
MyTwoCents Comment Aggregator란 무엇입니까?
MyTwoCents Comment Aggregator은(는) trahn에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Comment aggregator for Reddit, HackerNews, and Facebook"입니다.
확장 프로그램 스크린샷
MyTwoCents Comment Aggregator 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
MyTwoCents is a comment aggregator as a browser extension. It currently puts Reddit, HackerNews, and Facebook comments on any website you are visiting. The idea is to have all comments in one place right next to the website they are referring to - as you browse the web. You can see it in action before installing on this site: https://mytwocentscomments.website/
확장 프로그램 기본 정보
이름 | MyTwoCents Comment Aggregator |
ID | gmcmamjffgpegfhbkbldeamchnadoick |
공식 URL | https://chromewebstore.google.com/detail/mytwocents-comment-aggreg/gmcmamjffgpegfhbkbldeamchnadoick |
설명 | Comment aggregator for Reddit, HackerNews, and Facebook |
파일 크기 | 107 KB |
설치 횟수 | 29 |
현재 버전 | 0.1.3 |
최근 업데이트 | 2018-02-01 |
출시 날짜 | 2018-02-01 |
평점 | 4.25/5 총 4 개의 평점 |
개발자 | trahn |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "MyTwoCents Comment Aggregator", "description": "Comment aggregator for Reddit, HackerNews, and Facebook", "version": "0.1.3", "content_security_policy": "script-src 'self'; object-src 'self'", "background": { "scripts": [ "eventPage.js" ], "persistent": false }, "browser_action": { "default_icon": "icons\/icon16.png", "default_title": "Show comments!" }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "tabs", "activeTab", "storage", "webNavigation" ], "web_accessible_resources": [ "iframe.html", "icons\/icon128.png", "content.js", "content.css", "lib\/bootstrap.min.css", "lib\/bootstrap.min.js", "lib\/jquery-3.2.1.slim.min.js", "lib\/popper.min.js", "lib\/embedd.min.js", "iframe.css", "iframe.js" ] } |