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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย 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 ของส่วนขยาย AO3 Editor

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    }
}