AO3 Editor
Allows hiding of authors, tags, or works on archiveofourown.com (AO3) from view. On AO3's search page (or elsewhere on AO3),…
O que é AO3 Editor?
AO3 Editor é uma extensão do Chrome desenvolvida por ireneae, e sua principal característica é "Allows hiding of authors, tags, or works on archiveofourown.com (AO3) from view. On AO3's search page (or elsewhere on AO3),…".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão AO3 Editor
Baixe arquivos de extensão AO3 Editor no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | |
ID | oggeapckgmhapkkiikokhmkepmeabloi |
URL Oficial | https://chrome.google.com/webstore/detail/ao3-editor/oggeapckgmhapkkiikokhmkepmeabloi |
Descrição | Allows hiding of authors, tags, or works on archiveofourown.com (AO3) from view. On AO3's search page (or elsewhere on AO3),… |
Tamanho do Arquivo | 56.49 KB |
Contagem de Instalações | 53 |
Versão Atual | 1.1 |
Última Atualização | 2022-10-21 |
Data de Publicação | 2022-07-03 |
Desenvolvedor | ireneae |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } } |