reveddit language fix
Allows reveddit.com to work properly when the browser/OS language is not set to english.
Vad är reveddit language fix?
reveddit language fix är en Chrome-tillägg utvecklad av https://reveddit.com, och dess huvudfunktion är "Allows reveddit.com to work properly when the browser/OS language is not set to english.".
Tilläggsskärmbilder
Ladda ner reveddit language fix-förlängningens CRX-fil
Ladda ner reveddit language fix-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Source code: https://github.com/revddit/revddit-language-fix Grundläggande Information om Tillägg
| Namn | |
| ID | fcpgnheagjkmelppbpnbpfimmmjicknj |
| Officiell webbadress | https://chromewebstore.google.com/detail/reveddit-language-fix/fcpgnheagjkmelppbpnbpfimmmjicknj |
| Beskrivning | Allows reveddit.com to work properly when the browser/OS language is not set to english. |
| Filstorlek | 66.08 KB |
| Antal Installationer | 44 |
| Aktuell Version | 0.0.0.3 |
| Senast Uppdaterad | 2019-12-18 |
| Publiceringsdatum | 2019-12-17 |
| Utvecklare | https://reveddit.com |
| E-post | [email protected] |
| Betalningssätt | free |
| URL till Sekretesspolicy Sidan | https://docs.google.com/document/d/e/2PACX-1vTxfh-y3cnIE1Y495pfcJykWNLQRg8xIYLOZ7xHqcaktjI_Y_N5ZQuAnfMhtOrJaDD8bUirVQkD8tuy/pub |
| Stödda Språk | 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
} | |