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.".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл 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 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"
    }
}