Reddit Extras
A boilerplate to chrome extension with webpack
Reddit Extras란 무엇입니까?
Reddit Extras은(는) Roadwork에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A boilerplate to chrome extension with webpack"입니다.
확장 프로그램 스크린샷
Reddit Extras 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This plugin is created for the reddit.com website to support extra feature's commonly requested by the reddit community. Currently the focus is put on multireddits with further features implemented as per comments. Logo credits: https://reddit.com
확장 프로그램 기본 정보
이름 | Reddit Extras |
ID | hpbbgnajgjidpoccddnecafkbnjgpmeb |
공식 URL | https://chromewebstore.google.com/detail/reddit-extras/hpbbgnajgjidpoccddnecafkbnjgpmeb |
설명 | A boilerplate to chrome extension with webpack |
파일 크기 | 1.93 MB |
설치 횟수 | 111 |
현재 버전 | 0.1 |
최근 업데이트 | 2019-04-13 |
출시 날짜 | 2019-04-13 |
평점 | 4.33/5 총 3 개의 평점 |
개발자 | Roadwork |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://scraper.ai/privacy-extension |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "A boilerplate to chrome extension with webpack", "version": "0.1", "name": "Reddit Extras", "options_page": "options.html", "background": { "page": "background.html" }, "content_scripts": [ { "matches": [ "*:\/\/www.reddit.com\/*" ], "js": [ "content.bundle.js" ] } ], "browser_action": { "default_icon": "128.png" }, "icons": { "128": "128.png" }, "manifest_version": 2, "permissions": [ "activeTab", "storage", "notifications", "*:\/\/*.reddit.com\/*" ], "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/www.gstatic.com\/ https:\/\/*.firebaseio.com https:\/\/www.googleapis.com https:\/\/ssl.google-analytics.com; object-src 'self'", "oauth2": { "client_id": "809763600343-lil0ldk1scn8o7p1v97ncs3jhe6vrlhs.apps.googleusercontent.com", "scopes": [] } } |