reveddit language fix
Allows reveddit.com to work properly when the browser/OS language is not set to english.
reveddit language fixคืออะไร?
reveddit language fix เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://reveddit.com และคุณลักษณะหลักของมันคือ "Allows reveddit.com to work properly when the browser/OS language is not set to english."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย reveddit language fix
ดาวน์โหลดไฟล์ส่วนขยาย reveddit language fix ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Source code: https://github.com/revddit/revddit-language-fix ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | fcpgnheagjkmelppbpnbpfimmmjicknj |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/reveddit-language-fix/fcpgnheagjkmelppbpnbpfimmmjicknj |
| คำอธิบาย | Allows reveddit.com to work properly when the browser/OS language is not set to english. |
| ขนาดไฟล์ | 66.08 KB |
| จำนวนการติดตั้ง | 44 |
| เวอร์ชันปัจจุบัน | 0.0.0.3 |
| อัปเดตครั้งล่าสุด | 2019-12-18 |
| วันที่เผยแพร่ | 2019-12-17 |
| ผู้พัฒนา | https://reveddit.com |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| URL หน้านโยบายความเป็นส่วนตัว | https://docs.google.com/document/d/e/2PACX-1vTxfh-y3cnIE1Y495pfcJykWNLQRg8xIYLOZ7xHqcaktjI_Y_N5ZQuAnfMhtOrJaDD8bUirVQkD8tuy/pub |
| ภาษาที่รองรับ | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "reveddit language fix",
"short_name": "reveddit lang",
"description": "Allows reveddit.com to work properly when the browser\/OS language is not set to english.",
"version": "0.0.0.3",
"permissions": [
"webRequest",
"webRequestBlocking",
"https:\/\/*.reveddit.com\/*",
"https:\/\/*.reddit.com\/*"
],
"icons": {
"128": "icons\/128.png",
"48": "icons\/48.png",
"16": "icons\/16.png"
},
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"https:\/\/*.reveddit.com\/*"
],
"js": [
"content.js"
]
}
],
"manifest_version": 2
} | |