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是由https://reveddit.com開發的Chrome擴展程式,該擴展的主要功能是“Allows reveddit.com to work properly when the browser/OS language is not set to english.”。
擴展截圖
下載reveddit language fix擴展crx文件
下載reveddit language fix擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Source code: https://github.com/revddit/revddit-language-fix 擴展基本資訊
| 名稱 | |
| ID | fcpgnheagjkmelppbpnbpfimmmjicknj |
| 官方網址 | 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
} | |