ACX Tweaks

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

什麼是ACX Tweaks?

ACX Tweaks是由Pycea開發的Chrome擴展程式,該擴展的主要功能是“Quality of life improvements for the Astral Codex Ten blog on Substack.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載ACX Tweaks擴展crx文件

下載ACX Tweaks擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}