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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}