AO3 Editor

Allows hiding of authors, tags, or works on archiveofourown.com (AO3) from view. On AO3's search page (or elsewhere on AO3),…

Wat is AO3 Editor?

AO3 Editor is een Chrome-extensie ontwikkeld door ireneae, en de belangrijkste functie is "Allows hiding of authors, tags, or works on archiveofourown.com (AO3) from view. On AO3's search page (or elsewhere on AO3),…".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie AO3 Editor

Download AO3 Editor-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam AO3 Editor AO3 Editor
ID oggeapckgmhapkkiikokhmkepmeabloi
Officiële URL https://chrome.google.com/webstore/detail/ao3-editor/oggeapckgmhapkkiikokhmkepmeabloi
Beschrijving Allows hiding of authors, tags, or works on archiveofourown.com (AO3) from view. On AO3's search page (or elsewhere on AO3),…
Bestandsgrootte 56.49 KB
Aantal Installaties 53
Huidige Versie 1.1
Laatst Bijgewerkt 2022-10-21
Publicatiedatum 2022-07-03
Ontwikkelaar ireneae
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    }
}