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开发的Chrome扩展程序,该扩展的主要功能是“Allows hiding of authors, tags, or works on archiveofourown.com (AO3) from view. On AO3's search page (or elsewhere on AO3),…”。

扩展截图

screenshot

下载AO3 Editor扩展crx文件

下载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.                    

扩展基本信息

名称 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"
    }
}