TOOO

Translators of Our Own

TOOO là gì?

TOOO là một tiện ích mở rộng Chrome được phát triển bởi some1ne433, và tính năng chính của nó là "Translators of Our Own".

Ả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 TOOO

Tải xuống các tệp mở rộng TOOO 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

                        AO3中文翻譯輔助工具
還在為Ao3的全英文介面煩惱嗎?快來下載這個簡單的翻譯器擴充功能,讓介面變繁體中文模式!

目前支援三種翻譯模式設定:
一、直接於介面上翻譯
二、於游標提示顯示翻譯內容
三、於小視窗顯示翻譯內容

A simple chrome extension for translating some web pages on AO3.

Current Features Include:
- Translating Post New Work/Chapter page into Traditional Chinese.
- Translating Search Work page into Traditional Chinese.
- Three different translation modes in options settings.                    

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

Tên TOOO TOOO
ID nkolbcgdalnpibknoekkfcallfkcjgng
URL Chính Thức https://chromewebstore.google.com/detail/tooo/nkolbcgdalnpibknoekkfcallfkcjgng
Mô tả Translators of Our Own
Kích Thước Tệp 65.19 KB
Số Lần Cài Đặt 250
Phiên Bản Hiện Tại 2.1
Cập Nhật Lần Cuối 2021-06-21
Ngày Phát Hành 2021-05-31
Đánh Giá 4.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển some1ne433
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/huangelaine310/tooo
Ngôn Ngữ Được Hỗ Trợ zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TOOO",
    "description": "Translators of Our Own",
    "version": "2.1",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "*:\/\/archiveofourown.org\/*",
                "*:\/\/www.archiveofourown.org\/*"
            ],
            "css": [
                "tooo.css"
            ],
            "js": [
                "jquery.min.js",
                "selector_to_name.js",
                "util.js",
                "content_scripts\/general.js"
            ]
        },
        {
            "matches": [
                "*:\/\/archiveofourown.org\/users\/*",
                "*:\/\/www.archiveofourown.org\/users\/*"
            ],
            "css": [
                "tooo.css"
            ],
            "js": [
                "jquery.min.js",
                "selector_to_name.js",
                "util.js",
                "content_scripts\/user.js"
            ]
        },
        {
            "matches": [
                "*:\/\/archiveofourown.org\/works\/new",
                "*:\/\/www.archiveofourown.org\/works\/new"
            ],
            "css": [
                "tooo.css"
            ],
            "js": [
                "jquery.min.js",
                "selector_to_name.js",
                "util.js",
                "content_scripts\/work_new.js"
            ]
        },
        {
            "matches": [
                "*:\/\/archiveofourown.org\/works\/*\/chapters\/new",
                "*:\/\/www.archiveofourown.org\/works\/*\/chapters\/new"
            ],
            "css": [
                "tooo.css"
            ],
            "js": [
                "jquery.min.js",
                "selector_to_name.js",
                "util.js",
                "content_scripts\/chapter_new.js"
            ]
        },
        {
            "matches": [
                "*:\/\/archiveofourown.org\/works\/search*",
                "*:\/\/www.archiveofourown.org\/works\/search*"
            ],
            "css": [
                "tooo.css"
            ],
            "js": [
                "jquery.min.js",
                "selector_to_name.js",
                "util.js",
                "content_scripts\/search.js"
            ]
        },
        {
            "matches": [
                "*:\/\/archiveofourown.org\/tags\/*\/works",
                "*:\/\/www.archiveofourown.org\/tags\/*\/works",
                "*:\/\/archiveofourown.org\/tags\/*\/bookmarks",
                "*:\/\/www.archiveofourown.org\/tags\/*\/bookmarks"
            ],
            "css": [
                "tooo.css"
            ],
            "js": [
                "jquery.min.js",
                "selector_to_name.js",
                "util.js",
                "content_scripts\/browse.js"
            ]
        }
    ],
    "default_locale": "zh_TW",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "permissions": [
        "storage"
    ]
}