ACX Tweaks

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

Cos'è ACX Tweaks?

ACX Tweaks è un'estensione di Chrome sviluppata da Pycea, e la sua funzione principale è "Quality of life improvements for the Astral Codex Ten blog on Substack.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione ACX Tweaks

Scarica i file di estensione ACX Tweaks in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome ACX Tweaks ACX Tweaks
ID jdpghojhfigbpoeiadalafcmohaekglf
URL Ufficiale https://chromewebstore.google.com/detail/acx-tweaks/jdpghojhfigbpoeiadalafcmohaekglf
Descrizione Quality of life improvements for the Astral Codex Ten blog on Substack.
Dimensione del File 87.37 KB
Conteggio Installazioni 174
Versione Corrente 1.1
Ultimo Aggiornamento 2023-09-07
Data di Pubblicazione 2021-02-10
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Pycea
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/Pycea/ACX-tweaks
URL della Pagina di Aiuto https://github.com/Pycea/ACX-tweaks/issues
URL della Pagina della Politica sulla Privacy https://github.com/Pycea/ACX-tweaks/wiki/Privacy-policy
Lingue Supportate 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"
    }
}