ACX Tweaks
Quality of life improvements for the Astral Codex Ten blog on Substack.
ACX Tweaksคืออะไร?
ACX Tweaks เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Pycea และคุณลักษณะหลักของมันคือ "Quality of life improvements for the Astral Codex Ten blog on Substack."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ACX Tweaks
ดาวน์โหลดไฟล์ส่วนขยาย 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" } } |