MyCityPlace - Find Business Reviews & Ratings
This extension shows a business profile, ratings, and reviews from a phone number in the current page
Что такое MyCityPlace - Find Business Reviews & Ratings?
MyCityPlace - Find Business Reviews & Ratings - это расширение Chrome, разработанное http://mycityplace.com, и его основная функция - "This extension shows a business profile, ratings, and reviews from a phone number in the current page".
Снимки экрана расширения
Скачать файл CRX расширения MyCityPlace - Find Business Reviews & Ratings
Скачайте файлы расширений MyCityPlace - Find Business Reviews & Ratings в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
MyCityPlace helps find business's profile, ratings, and reviews using the phone number. Основная информация о расширении
| Название | |
| ID | clkkhfcknlpbljhdmhffcmghmegfdalb |
| Официальный URL | https://chrome.google.com/webstore/detail/clkkhfcknlpbljhdmhffcmghmegfdalb |
| Описание | This extension shows a business profile, ratings, and reviews from a phone number in the current page |
| Размер файла | 129 KB |
| Количество установок | 19 |
| Текущая Версия | 1.0 |
| Последнее Обновление | 2015-11-19 |
| Дата публикации | 2015-11-19 |
| Рейтинг | 5.00/5 Всего 1 оценок |
| Разработчик | http://mycityplace.com |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | 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"
]
} | |