MyCityPlace - Find Business Reviews & Ratings

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

Cos'è MyCityPlace - Find Business Reviews & Ratings?

MyCityPlace - Find Business Reviews & Ratings è un'estensione di Chrome sviluppata da http://mycityplace.com, e la sua funzione principale è "This extension shows a business profile, ratings, and reviews from a phone number in the current page".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione MyCityPlace - Find Business Reviews & Ratings

Scarica i file di estensione MyCityPlace - Find Business Reviews & Ratings in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome MyCityPlace - Find Business Reviews & Ratings MyCityPlace - Find Business Reviews & Ratings
ID clkkhfcknlpbljhdmhffcmghmegfdalb
URL Ufficiale https://chrome.google.com/webstore/detail/clkkhfcknlpbljhdmhffcmghmegfdalb
Descrizione This extension shows a business profile, ratings, and reviews from a phone number in the current page
Dimensione del File 129 KB
Conteggio Installazioni 19
Versione Corrente 1.0
Ultimo Aggiornamento 2015-11-19
Data di Pubblicazione 2015-11-19
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore http://mycityplace.com
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}