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
电子邮箱 [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"
            ]
        }
    ]
}