MyCityPlace - Find Business Reviews & Ratings
This extension shows a business profile, ratings, and reviews from a phone number in the current page
Vad är MyCityPlace - Find Business Reviews & Ratings?
MyCityPlace - Find Business Reviews & Ratings är en Chrome-tillägg utvecklad av http://mycityplace.com, och dess huvudfunktion är "This extension shows a business profile, ratings, and reviews from a phone number in the current page".
Tilläggsskärmbilder
Ladda ner MyCityPlace - Find Business Reviews & Ratings-förlängningens CRX-fil
Ladda ner MyCityPlace - Find Business Reviews & Ratings-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
MyCityPlace helps find business's profile, ratings, and reviews using the phone number.
Grundläggande Information om Tillägg
Namn | |
ID | clkkhfcknlpbljhdmhffcmghmegfdalb |
Officiell webbadress | https://chrome.google.com/webstore/detail/clkkhfcknlpbljhdmhffcmghmegfdalb |
Beskrivning | This extension shows a business profile, ratings, and reviews from a phone number in the current page |
Filstorlek | 129 KB |
Antal Installationer | 19 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2015-11-19 |
Publiceringsdatum | 2015-11-19 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | http://mycityplace.com |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" ] } |