Charset

Modify the default encoding for the website

Что такое Charset?

Charset - это расширение Chrome, разработанное jinliming2, и его основная функция - "Modify the default encoding for the website".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Charset

Скачайте файлы расширений Charset в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Due to the low frequency of use, Google Chrome removed the ability to manually set the webpage encoding after version 55. However, on some websites that are configured incorrectly, the new browser cannot accurately determine the encoding used, which causes the website to display garbled characters.

Open Source Address on GitHub:
https://github.com/jinliming2/Chrome-Charset

v0.5.5(2020/12/9)
1. [Optimization] When the file protocol lacks permissions, do not pop up the prompt box every time, now only shown once (GitHub Issue: #23-https://github.com/jinliming2/Chrome-Charset/issues/23)

v0.5.4(2020/7/6)
1. [Matching] Prioritize matching based on request type (GitHub Issue: #18-https://github.com/jinliming2/Chrome-Charset/issues/18)
2. [i18n] Supplementary extended description

v0.5.3(2020/3/15)
1. [Style] Adapt to the new Edge browser

v0.5.2(2019/5/12)
1. [Style] Adapt to the Dark mode theme in the new Chrome

v0.5.1(2019/3/19)
1. [Fixed] Due to the fact that v0.5.0 was released with one file lost, the extension could not be installed or updated from Chrome Store.

v0.5.0(2019/3/15)
1. [Refactoring] Change the encoding probe script to perform on demand
2. [Refactoring] The network request event is changed to on-demand registration and uninstalled when the extension doesn't need to work.
3. [i18n] Add translations in multiple national languages ​​and optimize page layout for some RTL languages
4. [i18n] The encoding list is optimized for each country's language, and the pinned encoding is selected in the current language. The encoding list is sorted according to the current language.
5. [New] Record and pin the three most recently used encodings
6. [New] Supports setting default encoding, which works for all pages (GitHub Issue: #8-https://github.com/jinliming2/Chrome-Charset/issues/8)
7. [New] Configuration Options Page
8. [style] Redesign popup popup page style

v0.4.3(2019/1/5)
1. [Fixed] The problem that encoding modification failed due to Chrome 72 (maybe earlier) starting to support Network Service

v0.4.2(2018/2/24)
1. [Fixed] If the site does not provide a Content-Type, we should use text/plain as the default Content-Type instead of text/html (GitHub Issue: #5-https://github.com/jinliming2/Chrome-Charset/issues/5 )

v0.4.1(2017/7/31)
1. [Fixed] The Content-Type of some pure JS content is application/x-javascript, which causes the matching to fail without converting the encoding (GitHub Issue: #2-https://github.com/jinliming2/Chrome-Charset/issues/2 )

v0.4(2017/7/1)
1. New setting option: Allow setting whether to display in the context menu (GitHub Issue: #1-https://github.com/jinliming2/Chrome-Charset/issues/1 )
2. Set the default language to English (en), the browser in Chinese and English are not affected, browsers in other languages display in English by default(From Chrome Web Store)

v0.3.1(2017/5/7)
1. [Fixed] The bug that the html document encoding failed to be modified under the file protocol.

v0.3(2017/4/17)
1. Added support for file:// protocol local files.

v0.2(2017/3/22)
1. Modify the code list loading logic.
2. The popup window displays a comment when it detects the current encoding.
3. Add a context menu.
4. Add English support.

v0.1(2017/2/14)
Beta Version, Supports the encodings listed in the Chrome 54 Select Encoding feature.                    

Основная информация о расширении

Название Charset Charset
ID oenllhgkiiljibhfagbfogdbchhdchml
Официальный URL https://chromewebstore.google.com/detail/charset/oenllhgkiiljibhfagbfogdbchhdchml
Описание Modify the default encoding for the website
Размер файла 55.78 KB
Количество установок 175,154
Текущая Версия 0.5.5
Последнее Обновление 2020-12-09
Дата публикации 2019-10-24
Рейтинг 4.79/5 Всего 115 оценок
Разработчик jinliming2
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/jinliming2/Chrome-Charset
URL страницы помощи https://github.com/jinliming2/Chrome-Charset/issues
Поддерживаемые языки id,ms,de,en,fil,fr,nl,vi,tr,ca,da,et,es,es-419,hr,it,lv,lt,hu,pl,pt-BR,pt-PT,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,uk,iw,mr,hi,bn,gu,ta,te,kn-IN,ml,th,ar,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "version": "0.5.5",
    "default_locale": "en",
    "description": "__MSG_appDescription__",
    "icons": {
        "128": "i\/128.png",
        "64": "i\/64.png",
        "38": "i\/38.png",
        "32": "i\/32.png",
        "19": "i\/19.png",
        "16": "i\/16.png"
    },
    "browser_action": {
        "default_icon": {
            "38": "i\/38.png",
            "19": "i\/19.png"
        },
        "default_title": "__MSG_appName__",
        "default_popup": "popup.html"
    },
    "author": "Liming Jin, [email protected]",
    "background": {
        "scripts": [
            "j\/encoding.js",
            "j\/background.js",
            "j\/menu.js"
        ],
        "persistent": true
    },
    "homepage_url": "https:\/\/github.com\/jinliming2\/Chrome-Charset",
    "incognito": "split",
    "minimum_chrome_version": "55.0.2872.0",
    "offline_enabled": true,
    "options_ui": {
        "chrome_style": false,
        "page": "option.html",
        "open_in_tab": false
    },
    "permissions": [
        "",
        "webRequest",
        "webRequestBlocking",
        "contextMenus",
        "tabs"
    ],
    "short_name": "__MSG_appShortName__"
}