MyCityPlace - Find Business Reviews & Ratings
This extension shows a business profile, ratings, and reviews from a phone number in the current page
什么是MyCityPlace - Find Business Reviews & Ratings?
MyCityPlace - Find Business Reviews & Ratings是由http://mycityplace.com开发的Chrome扩展程序,该扩展的主要功能是“This extension shows a business profile, ratings, and reviews from a phone number in the current page”。
扩展截图
下载MyCityPlace - Find Business Reviews & Ratings扩展crx文件
下载MyCityPlace - Find Business Reviews & Ratings扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
MyCityPlace helps find business's profile, ratings, and reviews using the phone number.
扩展基本信息
名称 | |
ID | clkkhfcknlpbljhdmhffcmghmegfdalb |
官方URL | https://chrome.google.com/webstore/detail/clkkhfcknlpbljhdmhffcmghmegfdalb |
简介 | This extension shows a business profile, ratings, and reviews from a phone number in the current page |
文件大小 | 129 KB |
安装次数 | 19 |
当前版本 | 1.0 |
更新时间 | 2015-11-19 |
上架时间 | 2015-11-19 |
评分 | 5.00/5 共1次评分 |
开发者 | http://mycityplace.com |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "MyCityPlace - Find Business Reviews & Ratings", "description": "This extension shows a business profile, ratings, and reviews from a phone number in the current page", "version": "1.0", "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon48.png" }, "content_scripts": [ { "js": [ "jquery-1.9.1.min.js", "content_script.js" ], "run_at": "document_end", "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "permissions": [ "activeTab", "webNavigation", "*:\/\/*\/*" ], "web_accessible_resources": [ "info.png" ] } |