Charset

Modify the default encoding for the website

O que é Charset?

Charset é uma extensão do Chrome desenvolvida por jinliming2, e sua principal característica é "Modify the default encoding for the website".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Charset

Baixe arquivos de extensão Charset no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Charset Charset
ID oenllhgkiiljibhfagbfogdbchhdchml
URL Oficial https://chromewebstore.google.com/detail/charset/oenllhgkiiljibhfagbfogdbchhdchml
Descrição Modify the default encoding for the website
Tamanho do Arquivo 55.78 KB
Contagem de Instalações 175,154
Versão Atual 0.5.5
Última Atualização 2020-12-09
Data de Publicação 2019-10-24
Classificação 4.79/5 Total de 115 Avaliações
Desenvolvedor jinliming2
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/jinliming2/Chrome-Charset
URL da Página de Ajuda https://github.com/jinliming2/Chrome-Charset/issues
Idiomas Suportados 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__"
}