AO3 Editor
Allows hiding of authors, tags, or works on archiveofourown.com (AO3) from view. On AO3's search page (or elsewhere on AO3),…
Что такое AO3 Editor?
AO3 Editor - это расширение Chrome, разработанное ireneae, и его основная функция - "Allows hiding of authors, tags, or works on archiveofourown.com (AO3) from view. On AO3's search page (or elsewhere on AO3),…".
Снимки экрана расширения
Скачать файл CRX расширения AO3 Editor
Скачайте файлы расширений AO3 Editor в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Allows hiding of authors, tags, or works on archiveofourown.com (AO3) from view. On AO3's search page (or elsewhere on AO3), right-clicking and selecting "block author"/"block tag"/"block work" will stop those works from showing up (after refreshing the page). This is purely a visual change. These can be edited, such as to stop blocking a work, through the extension's options page.
Основная информация о расширении
Название | |
ID | oggeapckgmhapkkiikokhmkepmeabloi |
Официальный URL | https://chrome.google.com/webstore/detail/ao3-editor/oggeapckgmhapkkiikokhmkepmeabloi |
Описание | Allows hiding of authors, tags, or works on archiveofourown.com (AO3) from view. On AO3's search page (or elsewhere on AO3),… |
Размер файла | 56.49 KB |
Количество установок | 53 |
Текущая Версия | 1.1 |
Последнее Обновление | 2022-10-21 |
Дата публикации | 2022-07-03 |
Разработчик | ireneae |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "AO3 Editor", "version": "1.1", "manifest_version": 3, "content_scripts": [ { "matches": [ "https:\/\/archiveofourown.org\/*" ], "js": [ "src\/content.js" ] } ], "background": { "service_worker": "src\/background.js" }, "permissions": [ "contextMenus", "storage", "declarativeContent" ], "action": { "default_popup": "src\/popup.html" }, "options_page": "src\/options.html", "icons": { "48": "icons\/ao3edit48.png", "128": "icons\/ao3edit128.png" } } |