MyCityPlace - Find Business Reviews & Ratings
This extension shows a business profile, ratings, and reviews from a phone number in the current page
What is MyCityPlace - Find Business Reviews & Ratings?
MyCityPlace - Find Business Reviews & Ratings is a Chrome extension developed by http://mycityplace.com, and its main feature is "This extension shows a business profile, ratings, and reviews from a phone number in the current page".
Extension Screenshots
Download MyCityPlace - Find Business Reviews & Ratings Extension CRX File
Download MyCityPlace - Find Business Reviews & Ratings extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
MyCityPlace helps find business's profile, ratings, and reviews using the phone number.
Extension Basic Information
Name | |
ID | clkkhfcknlpbljhdmhffcmghmegfdalb |
Official URL | https://chrome.google.com/webstore/detail/clkkhfcknlpbljhdmhffcmghmegfdalb |
Description | This extension shows a business profile, ratings, and reviews from a phone number in the current page |
File Size | 129 KB |
Installation Count | 19 |
Current Version | 1.0 |
Last Updated | 2015-11-19 |
Publish Date | 2015-11-19 |
Rating | 5.00/5 Total 1 Ratings |
Developer | http://mycityplace.com |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } |