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
公式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
Eメール [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"
    }
}