MyCityPlace - Find Business Reviews & Ratings

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

O que é MyCityPlace - Find Business Reviews & Ratings?

MyCityPlace - Find Business Reviews & Ratings é uma extensão do Chrome desenvolvida por http://mycityplace.com, e sua principal característica é "This extension shows a business profile, ratings, and reviews from a phone number in the current page".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão MyCityPlace - Find Business Reviews & Ratings

Baixe arquivos de extensão MyCityPlace - Find Business Reviews & Ratings no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome MyCityPlace - Find Business Reviews & Ratings MyCityPlace - Find Business Reviews & Ratings
ID clkkhfcknlpbljhdmhffcmghmegfdalb
URL Oficial https://chrome.google.com/webstore/detail/clkkhfcknlpbljhdmhffcmghmegfdalb
Descrição This extension shows a business profile, ratings, and reviews from a phone number in the current page
Tamanho do Arquivo 129 KB
Contagem de Instalações 19
Versão Atual 1.0
Última Atualização 2015-11-19
Data de Publicação 2015-11-19
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor http://mycityplace.com
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}