ACX Tweaks

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

ACX Tweaks क्या है?

ACX Tweaks Pycea द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Quality of life improvements for the Astral Codex Ten blog on Substack."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में ACX Tweaks एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम ACX Tweaks ACX Tweaks
ID jdpghojhfigbpoeiadalafcmohaekglf
आधिकारिक URL https://chromewebstore.google.com/detail/acx-tweaks/jdpghojhfigbpoeiadalafcmohaekglf
विवरण Quality of life improvements for the Astral Codex Ten blog on Substack.
फ़ाइल का आकार 87.37 KB
स्थापना संख्या 174
वर्तमान संस्करण 1.1
अंतिम अपडेट 2023-09-07
प्रकाशन तिथि 2021-02-10
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर Pycea
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/Pycea/ACX-tweaks
सहायता पृष्ठ URL https://github.com/Pycea/ACX-tweaks/issues
गोपनीयता नीति पृष्ठ URL https://github.com/Pycea/ACX-tweaks/wiki/Privacy-policy
समर्थित भाषाएँ 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"
    }
}