MyCityPlace - Find Business Reviews & Ratings
This extension shows a business profile, ratings, and reviews from a phone number in the current page
Hvad er MyCityPlace - Find Business Reviews & Ratings?
MyCityPlace - Find Business Reviews & Ratings er en Chrome-udvidelse udviklet af http://mycityplace.com, og dens hovedfunktion er "This extension shows a business profile, ratings, and reviews from a phone number in the current page".
Udvidelsesskærmbilleder
Download MyCityPlace - Find Business Reviews & Ratings-udvidelses-CRX-fil
Download MyCityPlace - Find Business Reviews & Ratings-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
MyCityPlace helps find business's profile, ratings, and reviews using the phone number.
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | clkkhfcknlpbljhdmhffcmghmegfdalb |
Officiel URL | https://chrome.google.com/webstore/detail/clkkhfcknlpbljhdmhffcmghmegfdalb |
Beskrivelse | This extension shows a business profile, ratings, and reviews from a phone number in the current page |
Filstørrelse | 129 KB |
Antal Installationer | 19 |
Nuværende Version | 1.0 |
Senest Opdateret | 2015-11-19 |
Udgivelsesdato | 2015-11-19 |
Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
Udvikler | http://mycityplace.com |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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" ] } |