Google CN DevSites

When available, automatically maps Google devsites to its CN mirrors

Google CN DevSitesとは何ですか?

Google CN DevSitesはzhuocによって開発されたChromeの拡張機能で、その主な機能は「When available, automatically maps Google devsites to its CN mirrors」です。

拡張機能のスクリーンショット

screenshot

Google CN DevSites拡張機能のCRXファイルをダウンロード

Google CN DevSites拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        这是一个简单的Chrome扩展,自动将google.com上的开发者网站URL替换成google.cn上的对应URL(如果有相对应的.CN域名上的页面),这样只要点击就能直接打开页面。现在支持的映射有:
- "developers.google.com" -> "developers.google.cn"
- "firebase.google.com" -> "firebase.google.cn"
- "developer.android.com" -> "developer.android.google.cn"
- "source.android.com" -> "source.android.google.cn"
- "www.tensorflow.org" -> "tensorflow.google.cn"
- "tfhub.dev" -> "hub.tensorflow.google.cn"
- "angular.io" -> "angular.cn"
- "golang.org" -> "golang.google.cn"
- "sum.golang.org" -> "sum.golang.google.cn"

同时它还包含一些其他谷歌服务的网址映射:
- "translate.google.com" -> "translate.google.cn"
- "careers.google.com" -> "careers.google.cn"

代码已经在这里开源:https://github.com/chenzhuo914/google-cn-devsites-extension.                    

拡張機能の基本情報

名前 Google CN DevSites Google CN DevSites
ID lgfkdmijgggnkoocgaenihkioidaejhd
公式URL https://chromewebstore.google.com/detail/google-cn-devsites/lgfkdmijgggnkoocgaenihkioidaejhd
説明 When available, automatically maps Google devsites to its CN mirrors
ファイルサイズ 26.48 KB
インストール数 814
現在のバージョン 0.25
最終更新日 2021-05-22
公開日 2018-04-03
評価 4.95/5 合計 20 レビュー
開発者 zhuoc
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Google CN DevSites",
    "description": "When available, automatically maps Google devsites to its CN mirrors",
    "version": "0.25",
    "permissions": [
        "declarativeNetRequest",
        "storage"
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset_1",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    },
    "host_permissions": [
        "*:\/\/*.google.com\/*",
        "*:\/\/*.android.com\/*",
        "*:\/\/*.tensorflow.org\/*",
        "*:\/\/*.angular.io\/*",
        "*:\/\/*.golang.org\/*"
    ],
    "background": {
        "service_worker": "bg.js"
    },
    "icons": {
        "128": "on.png"
    },
    "action": []
}