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.”。
扩展截图
下载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 |
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" } } |