MyCityPlace - Find Business Reviews & Ratings
This extension shows a business profile, ratings, and reviews from a phone number in the current page
Was ist MyCityPlace - Find Business Reviews & Ratings?
MyCityPlace - Find Business Reviews & Ratings ist eine Chrome-Erweiterung, die von http://mycityplace.com entwickelt wurde, und ihr Hauptmerkmal ist "This extension shows a business profile, ratings, and reviews from a phone number in the current page".
Erweiterungsscreenshots
MyCityPlace - Find Business Reviews & Ratings-Erweiterungs-CRX-Datei herunterladen
Laden Sie MyCityPlace - Find Business Reviews & Ratings-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
MyCityPlace helps find business's profile, ratings, and reviews using the phone number. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | clkkhfcknlpbljhdmhffcmghmegfdalb |
| Offizielle URL | https://chrome.google.com/webstore/detail/clkkhfcknlpbljhdmhffcmghmegfdalb |
| Beschreibung | This extension shows a business profile, ratings, and reviews from a phone number in the current page |
| Dateigröße | 129 KB |
| Installationsanzahl | 19 |
| Aktuelle Version | 1.0 |
| Letztes Update | 2015-11-19 |
| Veröffentlichungsdatum | 2015-11-19 |
| Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
| Entwickler | http://mycityplace.com |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | 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"
]
} | |