ACX Tweaks
Quality of life improvements for the Astral Codex Ten blog on Substack.
¿Qué es ACX Tweaks?
ACX Tweaks es una extensión de Chrome desarrollada por Pycea, y su función principal es "Quality of life improvements for the Astral Codex Ten blog on Substack.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión ACX Tweaks
Descarga archivos de extensión ACX Tweaks en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | ACX Tweaks |
ID | jdpghojhfigbpoeiadalafcmohaekglf |
URL Oficial | https://chromewebstore.google.com/detail/acx-tweaks/jdpghojhfigbpoeiadalafcmohaekglf |
Descripción | Quality of life improvements for the Astral Codex Ten blog on Substack. |
Tamaño del Archivo | 87.37 KB |
Cantidad de Instalaciones | 174 |
Versión Actual | 1.1 |
Última Actualización | 2023-09-07 |
Fecha de Publicación | 2021-02-10 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | Pycea |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/Pycea/ACX-tweaks |
URL de la Página de Ayuda | https://github.com/Pycea/ACX-tweaks/issues |
URL de la Página de Política de Privacidad | https://github.com/Pycea/ACX-tweaks/wiki/Privacy-policy |
Idiomas Soportados | 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" } } |