ACX Tweaks

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

What is ACX Tweaks?

ACX Tweaks is a Chrome extension developed by Pycea, and its main feature is "Quality of life improvements for the Astral Codex Ten blog on Substack.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download ACX Tweaks Extension CRX File

Download ACX Tweaks extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name ACX Tweaks ACX Tweaks
ID jdpghojhfigbpoeiadalafcmohaekglf
Official URL https://chromewebstore.google.com/detail/acx-tweaks/jdpghojhfigbpoeiadalafcmohaekglf
Description Quality of life improvements for the Astral Codex Ten blog on Substack.
File Size 87.37 KB
Installation Count 174
Current Version 1.1
Last Updated 2023-09-07
Publish Date 2021-02-10
Rating 5.00/5 Total 1 Ratings
Developer Pycea
Email [email protected]
Payment Type free
Extension Website https://github.com/Pycea/ACX-tweaks
Help Page URL https://github.com/Pycea/ACX-tweaks/issues
Privacy Policy Page URL https://github.com/Pycea/ACX-tweaks/wiki/Privacy-policy
Supported Languages 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"
    }
}