ACX Tweaks

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

ACX Tweaks là gì?

ACX Tweaks là một tiện ích mở rộng Chrome được phát triển bởi Pycea, và tính năng chính của nó là "Quality of life improvements for the Astral Codex Ten blog on Substack.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng ACX Tweaks

Tải xuống các tệp mở rộng ACX Tweaks dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ACX Tweaks ACX Tweaks
ID jdpghojhfigbpoeiadalafcmohaekglf
URL Chính Thức https://chromewebstore.google.com/detail/acx-tweaks/jdpghojhfigbpoeiadalafcmohaekglf
Mô tả Quality of life improvements for the Astral Codex Ten blog on Substack.
Kích Thước Tệp 87.37 KB
Số Lần Cài Đặt 174
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2023-09-07
Ngày Phát Hành 2021-02-10
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Pycea
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Pycea/ACX-tweaks
URL Trang Trợ Giúp https://github.com/Pycea/ACX-tweaks/issues
URL Trang Chính Sách Bảo Mật https://github.com/Pycea/ACX-tweaks/wiki/Privacy-policy
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}