AO3 Editor
Allows hiding of authors, tags, or works on archiveofourown.com (AO3) from view. On AO3's search page (or elsewhere on AO3),…
Cos'è AO3 Editor?
AO3 Editor è un'estensione di Chrome sviluppata da ireneae, e la sua funzione principale è "Allows hiding of authors, tags, or works on archiveofourown.com (AO3) from view. On AO3's search page (or elsewhere on AO3),…".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione AO3 Editor
Scarica i file di estensione AO3 Editor in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | oggeapckgmhapkkiikokhmkepmeabloi |
URL Ufficiale | https://chrome.google.com/webstore/detail/ao3-editor/oggeapckgmhapkkiikokhmkepmeabloi |
Descrizione | Allows hiding of authors, tags, or works on archiveofourown.com (AO3) from view. On AO3's search page (or elsewhere on AO3),… |
Dimensione del File | 56.49 KB |
Conteggio Installazioni | 53 |
Versione Corrente | 1.1 |
Ultimo Aggiornamento | 2022-10-21 |
Data di Pubblicazione | 2022-07-03 |
Sviluppatore | ireneae |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" } } |