Clutterfree for Anilist
Minimal extension to remove clutter from AniList notifications
Что такое Clutterfree for Anilist?
Clutterfree for Anilist - это расширение Chrome, разработанное Miles Rayne, и его основная функция - "Minimal extension to remove clutter from AniList notifications".
Снимки экрана расширения
Скачать файл CRX расширения Clutterfree for Anilist
Скачайте файлы расширений Clutterfree for Anilist в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Clutterfree for Anilist is a minimalistic browser extension for removing clutter from AniList notifications. Its core feature is the option to group similar notifications (such as activity likes) of the /notifications page on AniList into single items that can be expanded to show individual details when needed.
Основная информация о расширении
Название | Clutterfree for Anilist |
ID | hfgmcmijjnccacoefjdndepfkbaejllb |
Официальный URL | https://chromewebstore.google.com/detail/clutterfree-for-anilist/hfgmcmijjnccacoefjdndepfkbaejllb |
Описание | Minimal extension to remove clutter from AniList notifications |
Размер файла | 17.81 KB |
Количество установок | 33 |
Текущая Версия | 1.1.2 |
Последнее Обновление | 2023-03-18 |
Дата публикации | 2023-03-18 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | Miles Rayne |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Clutterfree for Anilist", "description": "Minimal extension to remove clutter from AniList notifications", "version": "1.1.2", "author": "Miles Rayne", "icons": { "128": "icons\/icon128.png" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/anilist.co\/*" ], "js": [ "polyfill.js", "clutterfree.js" ] } ], "web_accessible_resources": [ { "matches": [ "https:\/\/anilist.co\/*" ], "resources": [ "css\/clutterfree.css" ] } ] } |