MyCityPlace - Find Business Reviews & Ratings
This extension shows a business profile, ratings, and reviews from a phone number in the current page
Co to jest MyCityPlace - Find Business Reviews & Ratings?
MyCityPlace - Find Business Reviews & Ratings to rozszerzenie Chrome opracowane przez http://mycityplace.com, a jego główną funkcją jest „This extension shows a business profile, ratings, and reviews from a phone number in the current page”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia MyCityPlace - Find Business Reviews & Ratings
Pobierz pliki rozszerzeń MyCityPlace - Find Business Reviews & Ratings w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
MyCityPlace helps find business's profile, ratings, and reviews using the phone number. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | clkkhfcknlpbljhdmhffcmghmegfdalb |
| Oficjalny URL | https://chrome.google.com/webstore/detail/clkkhfcknlpbljhdmhffcmghmegfdalb |
| Opis | This extension shows a business profile, ratings, and reviews from a phone number in the current page |
| Rozmiar pliku | 129 KB |
| Liczba instalacji | 19 |
| Aktualna Wersja | 1.0 |
| Ostatnia Aktualizacja | 2015-11-19 |
| Data Publikacji | 2015-11-19 |
| Ocena | 5.00/5 Łącznie 1 Oceny |
| Deweloper | http://mycityplace.com |
| [email protected] | |
| Typ Płatności | free |
| Obsługiwane Języki | 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"
]
} | |