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
官方網址 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
電子郵箱 [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"
            ]
        }
    ]
}