Google Place ID Display

The Google Place Display conveniently displays the Place IDs of companies.

Google Place ID Displayとは何ですか?

Google Place ID DisplayはCodeWithDennisによって開発されたChromeの拡張機能で、その主な機能は「The Google Place Display conveniently displays the Place IDs of companies.」です。

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

screenshot

Google Place ID Display拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        The Google Place ID Sidebar add-on is primarily designed for developers to enhance their Google Search experience. It provides the convenience of displaying the Place IDs of companies you search for in the sidebar.                    

拡張機能の基本情報

名前 Google Place ID Display Google Place ID Display
ID lajmnonjjncieddbhlkenkaeidehamao
公式URL https://chromewebstore.google.com/detail/google-place-id-display/lajmnonjjncieddbhlkenkaeidehamao
説明 The Google Place Display conveniently displays the Place IDs of companies.
ファイルサイズ 13.61 KB
インストール数 89
現在のバージョン 1.0
最終更新日 2023-05-21
公開日 2023-05-21
開発者 CodeWithDennis
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Google Place ID Display",
    "version": "1.0",
    "description": "The Google Place Display conveniently displays the Place IDs of companies.",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [],
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "128": "icons\/128.png"
    },
    "action": [],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.google.nl\/*",
                "https:\/\/www.google.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}