Reddit Extras
A boilerplate to chrome extension with webpack
Reddit Extras là gì?
Reddit Extras là một tiện ích mở rộng Chrome được phát triển bởi Roadwork, và tính năng chính của nó là "A boilerplate to chrome extension with webpack".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Reddit Extras
Tải xuống các tệp mở rộng Reddit Extras dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Reddit Extras |
ID | hpbbgnajgjidpoccddnecafkbnjgpmeb |
URL Chính Thức | https://chromewebstore.google.com/detail/reddit-extras/hpbbgnajgjidpoccddnecafkbnjgpmeb |
Mô tả | A boilerplate to chrome extension with webpack |
Kích Thước Tệp | 1.93 MB |
Số Lần Cài Đặt | 111 |
Phiên Bản Hiện Tại | 0.1 |
Cập Nhật Lần Cuối | 2019-04-13 |
Ngày Phát Hành | 2019-04-13 |
Đánh Giá | 4.33/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | Roadwork |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Chính Sách Bảo Mật | https://scraper.ai/privacy-extension |
Ngôn Ngữ Được Hỗ Trợ | 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": [] } } |