companion for reddit
Turn your browser into a redditor's best friend.
companion for redditคืออะไร?
companion for reddit เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Toolbox development team และคุณลักษณะหลักของมันคือ "Turn your browser into a redditor's best friend."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย companion for reddit
ดาวน์โหลดไฟล์ส่วนขยาย companion for reddit ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This is a modified version of the official reddit companion which can be found here:
https://chrome.google.com/webstore/detail/reddit-companion/algjnflpgoopkdijmkalfcifomdhmcbe
This version fixes some long outstanding bugs and adds some new things:
- https support: should work on (more) https pages now.
- notifications work again: the old companion used an outdated call.
- design tweaks: Less shadows, less gradients, less rounded corners.
Todo:
- Update the notifications to have a better suited icon that is not blurred out.
- Add support for moderation related tasks.
- Possibly integrate these with the moderator toolbox extension. ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | hjndgefhmfcgpoocjcgoemphhdkbhipm |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/companion-for-reddit/hjndgefhmfcgpoocjcgoemphhdkbhipm |
| คำอธิบาย | Turn your browser into a redditor's best friend. |
| ขนาดไฟล์ | 95.58 KB |
| จำนวนการติดตั้ง | 1,166 |
| เวอร์ชันปัจจุบัน | 2.0.4 |
| อัปเดตครั้งล่าสุด | 2016-06-21 |
| วันที่เผยแพร่ | 2016-06-21 |
| คะแนน | 4.61/5 รวมทั้งหมด 23 คะแนน |
| ผู้พัฒนา | Toolbox development team |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| เว็บไซต์ส่วนขยาย | https://github.com/creesch/reddit-companion |
| URL หน้านโยบายความเป็นส่วนตัว | https://www.reddit.com/r/toolbox/wiki/privacy |
| ภาษาที่รองรับ | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "companion for reddit",
"version": "2.0.4",
"manifest_version": 2,
"description": "Turn your browser into a redditor's best friend.",
"options_page": "options.html",
"permissions": [
"tabs",
"notifications",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"content_security_policy": "default-src 'self'; connect-src 'self' https:\/\/*.reddit.com; connect-src 'self' http:\/\/*.reddit.com; style-src 'self' 'unsafe-inline'; script-src 'self'",
"icons": {
"16": "images\/shine-16.png",
"48": "images\/shine-48.png",
"128": "images\/shine-128.png"
},
"background": {
"page": "background.html"
},
"page_action": {
"default_icon": "images\/reddit.png",
"default_title": "Show reddit information"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"run_at": "document_start",
"js": [
"debug.js",
"redditContent.js"
]
},
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"run_at": "document_start",
"js": [
"debug.js",
"pageOverlay.js"
]
}
],
"web_accessible_resources": [
"pageOverlay.css",
"bar.html",
"submit.html",
"images\/reddit-mail.svg",
"images\/reddit-modmail.svg"
]
} | |