片假名だめ

One-click conversion of all 片假名 in the webpage into English words, supporting multiple translation engines

片假名だめ là gì?

片假名だめ là một tiện ích mở rộng Chrome được phát triển bởi https://aimu.app, và tính năng chính của nó là "One-click conversion of all 片假名 in the webpage into English words, supporting multiple translation engines".

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

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng 片假名だめ

Tải xuống các tệp mở rộng 片假名だめ 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

                        Is it a mistake to learn English words while learning Japanese words?
What should I do if there are too many katakana characters on the website? It is too troublesome to translate one by one!

This is a good helper for learning Japanese Katakana. It converts all Katakana words in the webpage into English words with one click, supports multiple translation engines, and is free to use forever.                    

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

Tên 片假名だめ 片假名だめ
ID gijbihfhkfjcmbneojmhmhkokoebdfbp
URL Chính Thức https://chromewebstore.google.com/detail/%E7%89%87%E5%81%87%E5%90%8D%E3%81%A0%E3%82%81/gijbihfhkfjcmbneojmhmhkokoebdfbp
Mô tả One-click conversion of all 片假名 in the webpage into English words, supporting multiple translation engines
Kích Thước Tệp 622 KB
Số Lần Cài Đặt 600
Phiên Bản Hiện Tại 1.0.3
Cập Nhật Lần Cuối 2023-05-20
Ngày Phát Hành 2023-05-17
Nhà Phát Triển https://aimu.app
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://aimu.app
URL Trang Trợ Giúp https://aimu.app
URL Trang Chính Sách Bảo Mật https://aimu.app/privacy-policy.html
Ngôn Ngữ Được Hỗ Trợ en,zh-CN,zh-TW,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_name__",
    "version": "1.0.3",
    "description": "__MSG_description__",
    "default_locale": "zh_CN",
    "homepage_url": "https:\/\/aimu.app",
    "manifest_version": 3,
    "host_permissions": [
        "*:\/\/fanyi.baidu.com\/*",
        "*:\/\/fanyi.youdao.com\/*",
        "*:\/\/translate.google.com\/*",
        "*:\/\/www.bing.com\/translator\/*",
        "*:\/\/www.deepl.com\/translator\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "activeTab",
        "scripting"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_title": "__MSG_name__",
        "default_icon": {
            "16": "images\/16.png",
            "32": "images\/32.png",
            "48": "images\/48.png",
            "128": "images\/128.png"
        }
    },
    "icons": {
        "16": "images\/16.png",
        "32": "images\/32.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/fanyi.baidu.com\/*",
                "*:\/\/fanyi.youdao.com\/*",
                "*:\/\/translate.google.com\/*",
                "*:\/\/www.bing.com\/translator\/*",
                "*:\/\/www.deepl.com\/translator\/*"
            ],
            "run_at": "document_start",
            "js": [
                "injection.js"
            ]
        }
    ]
}