推特翻译熊 - Twitter with Baidu Translator

一款显著提高日推(Twitter)刷推体验的 Chrome 插件。 针对日语推文,采用百度翻译代替默认的 Google 翻译,大幅提高日语翻译质量。

What is 推特翻译熊 - Twitter with Baidu Translator?

推特翻译熊 - Twitter with Baidu Translator is a Chrome extension developed by posebear1990, and its main feature is "一款显著提高日推(Twitter)刷推体验的 Chrome 插件。 针对日语推文,采用百度翻译代替默认的 Google 翻译,大幅提高日语翻译质量。".

Extension Screenshots

screenshot

Download 推特翻译熊 - Twitter with Baidu Translator Extension CRX File

Download 推特翻译熊 - Twitter with Baidu Translator extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        哟,来了啊,先给您介绍一下这个插件。

Twitter 众所周知的技术大佬,色图大佬,微博难民的聚集圣地,实在是居家旅行摸鱼学习必备良药,然而,并不是每个人的外语都那么好,那么翻译软件是必不可少了。

于是,他来了——推特翻译熊,他踩着推特百度横空出世了(灯灯灯~~~

他有什么功能?
第一: 他提供了首页推文列表的翻译按钮,点击后一键翻译,无需点入推文详情,大大提高了刷推效率。

第二:对于日文推文,他用百度翻译替换了 Twitter 自带的 Google 翻译,这下知道为啥是推特翻译熊,而不是推特翻译君了吧。    
至于为什么日文要用百度翻译而不是 Google 翻译,因为 Google 翻译的实在太差了呀。

最后,请大家多多使用,抓 bug 和提供宝贵意见。🙇‍♂️

好,废话就说到这里,大家刷推愉快 Selamat Pagi ^_^                    

Extension Basic Information

Name 推特翻译熊 - Twitter with Baidu Translator 推特翻译熊 - Twitter with Baidu Translator
ID jfoppggphfkahfohdamcijagmpgffenp
Official URL https://chromewebstore.google.com/detail/%E6%8E%A8%E7%89%B9%E7%BF%BB%E8%AF%91%E7%86%8A-twitter-with-baidu/jfoppggphfkahfohdamcijagmpgffenp
Description 一款显著提高日推(Twitter)刷推体验的 Chrome 插件。 针对日语推文,采用百度翻译代替默认的 Google 翻译,大幅提高日语翻译质量。
File Size 75.34 KB
Installation Count 2,416
Current Version 2.0.1
Last Updated 2023-01-30
Publish Date 2020-08-25
Rating 4.10/5 Total 10 Ratings
Developer posebear1990
Email [email protected]
Payment Type free
Extension Website https://github.com/posebear1990/TwitterWithBaiduTranslator
Help Page URL https://github.com/posebear1990/TwitterWithBaiduTranslator/issues
Supported Languages zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "\u63a8\u7279\u7ffb\u8bd1\u718a - Twitter with Baidu Translator",
    "version": "2.0.1",
    "description": "\u4e00\u6b3e\u663e\u8457\u63d0\u9ad8\u65e5\u63a8\uff08Twitter\uff09\u5237\u63a8\u4f53\u9a8c\u7684 Chrome \u63d2\u4ef6\u3002\n\u9488\u5bf9\u65e5\u8bed\u63a8\u6587\uff0c\u91c7\u7528\u767e\u5ea6\u7ffb\u8bd1\u4ee3\u66ff\u9ed8\u8ba4\u7684 Google \u7ffb\u8bd1\uff0c\u5927\u5e45\u63d0\u9ad8\u65e5\u8bed\u7ffb\u8bd1\u8d28\u91cf\u3002",
    "permissions": [
        "storage",
        "activeTab",
        "webRequest",
        "tabs"
    ],
    "background": {
        "service_worker": "service_worker.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.twitter.com\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/*.twitter.com\/*"
        ]
    },
    "icons": {
        "16": "images\/main_logo_16.png",
        "32": "images\/main_logo_32.png",
        "48": "images\/main_logo_48.png",
        "64": "images\/main_logo_64.png",
        "128": "images\/main_logo_128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "manifest_version": 3,
    "action": {
        "default_popup": "popup.html"
    },
    "content_security_policy": [],
    "host_permissions": [
        "https:\/\/*.twitter.com\/*",
        "https:\/\/fanyi-api.baidu.com\/*",
        "https:\/\/translate.googleapis.com\/translate_a\/single"
    ]
}