MyCityPlace - Find Business Reviews & Ratings

This extension shows a business profile, ratings, and reviews from a phone number in the current page

¿Qué es MyCityPlace - Find Business Reviews & Ratings?

MyCityPlace - Find Business Reviews & Ratings es una extensión de Chrome desarrollada por http://mycityplace.com, y su función principal es "This extension shows a business profile, ratings, and reviews from a phone number in the current page".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión MyCityPlace - Find Business Reviews & Ratings

Descarga archivos de extensión MyCityPlace - Find Business Reviews & Ratings en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        MyCityPlace helps find business's profile, ratings, and reviews using the phone number.                    

Información Básica de la Extensión

Nombre MyCityPlace - Find Business Reviews & Ratings MyCityPlace - Find Business Reviews & Ratings
ID clkkhfcknlpbljhdmhffcmghmegfdalb
URL Oficial https://chrome.google.com/webstore/detail/clkkhfcknlpbljhdmhffcmghmegfdalb
Descripción This extension shows a business profile, ratings, and reviews from a phone number in the current page
Tamaño del Archivo 129 KB
Cantidad de Instalaciones 19
Versión Actual 1.0
Última Actualización 2015-11-19
Fecha de Publicación 2015-11-19
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador http://mycityplace.com
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
    ]
}