ACX Tweaks

Quality of life improvements for the Astral Codex Ten blog on Substack.

O que é ACX Tweaks?

ACX Tweaks é uma extensão do Chrome desenvolvida por Pycea, e sua principal característica é "Quality of life improvements for the Astral Codex Ten blog on Substack.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão ACX Tweaks

Baixe arquivos de extensão ACX Tweaks 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

                        A series of enhancements for the Astral Codex Ten blog on Substack.

Most of the improvements focus on making the comment reading experience better. Also provides an option to style ACX similar to the old Slate Star Codex blog.

See https://github.com/Pycea/ACX-tweaks for more information, including a list of all the features.

NOTE: ACX Tweaks is developed independently and is not affiliated with ACX or Substack.                    

Informações Básicas da Extensão

Nome ACX Tweaks ACX Tweaks
ID jdpghojhfigbpoeiadalafcmohaekglf
URL Oficial https://chromewebstore.google.com/detail/acx-tweaks/jdpghojhfigbpoeiadalafcmohaekglf
Descrição Quality of life improvements for the Astral Codex Ten blog on Substack.
Tamanho do Arquivo 87.37 KB
Contagem de Instalações 174
Versão Atual 1.1
Última Atualização 2023-09-07
Data de Publicação 2021-02-10
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Pycea
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/Pycea/ACX-tweaks
URL da Página de Ajuda https://github.com/Pycea/ACX-tweaks/issues
URL da Página de Política de Privacidade https://github.com/Pycea/ACX-tweaks/wiki/Privacy-policy
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ACX Tweaks",
    "description": "Quality of life improvements for the Astral Codex Ten blog on Substack.",
    "version": "1.1",
    "permissions": [
        "storage"
    ],
    "icons": {
        "128": "icons\/acx-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/astralcodexten.substack.com\/*",
                "https:\/\/www.astralcodexten.com\/*",
                "https:\/\/astralcodexten.com\/*"
            ],
            "js": [
                "lib\/jquery-3.5.1.min.js",
                "js\/options.js",
                "js\/util.js",
                "js\/styles.js",
                "js\/content.js",
                "js\/tests.js"
            ],
            "css": [
                "skin\/css\/style.css"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "icons\/*.svg"
    ],
    "browser_action": {
        "default_popup": "skin\/popup.html",
        "default_title": "ACX Tweaks"
    }
}