Reddit Extras
A boilerplate to chrome extension with webpack
Reddit Extrasคืออะไร?
Reddit Extras เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Roadwork และคุณลักษณะหลักของมันคือ "A boilerplate to chrome extension with webpack"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Reddit Extras
ดาวน์โหลดไฟล์ส่วนขยาย Reddit Extras ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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": [] } } |