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
扩展基本信息
名称 | reveddit 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 } |