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 là gì?

AO3 Editor là một tiện ích mở rộng Chrome được phát triển bởi ireneae, và tính năng chính của nó là "Allows hiding of authors, tags, or works on archiveofourown.com (AO3) from view. On AO3's search page (or elsewhere on AO3),…".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng AO3 Editor

Tải xuống các tệp mở rộng AO3 Editor dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên AO3 Editor AO3 Editor
ID oggeapckgmhapkkiikokhmkepmeabloi
URL Chính Thức https://chrome.google.com/webstore/detail/ao3-editor/oggeapckgmhapkkiikokhmkepmeabloi
Mô tả Allows hiding of authors, tags, or works on archiveofourown.com (AO3) from view. On AO3's search page (or elsewhere on AO3),…
Kích Thước Tệp 56.49 KB
Số Lần Cài Đặt 53
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2022-10-21
Ngày Phát Hành 2022-07-03
Nhà Phát Triển ireneae
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}