ACX Tweaks
Quality of life improvements for the Astral Codex Ten blog on Substack.
Qu'est-ce que ACX Tweaks ?
ACX Tweaks est une extension Chrome développée par Pycea, et sa fonction principale est "Quality of life improvements for the Astral Codex Ten blog on Substack.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension ACX Tweaks
Téléchargez les fichiers d'extension ACX Tweaks au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | ACX Tweaks |
ID | jdpghojhfigbpoeiadalafcmohaekglf |
URL Officiel | https://chromewebstore.google.com/detail/acx-tweaks/jdpghojhfigbpoeiadalafcmohaekglf |
Description | Quality of life improvements for the Astral Codex Ten blog on Substack. |
Taille du Fichier | 87.37 KB |
Nombre d'Installations | 174 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2023-09-07 |
Date de Publication | 2021-02-10 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Pycea |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/Pycea/ACX-tweaks |
URL de la Page d'Aide | https://github.com/Pycea/ACX-tweaks/issues |
URL de la Page de Politique de Confidentialité | https://github.com/Pycea/ACX-tweaks/wiki/Privacy-policy |
Langues Prises en Charge | 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" } } |