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 ireneae द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows hiding of authors, tags, or works on archiveofourown.com (AO3) from view. On AO3's search page (or elsewhere on AO3),…"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में AO3 Editor एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम AO3 Editor AO3 Editor
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"
    }
}