MyCityPlace - Find Business Reviews & Ratings

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

Co je MyCityPlace - Find Business Reviews & Ratings?

MyCityPlace - Find Business Reviews & Ratings je rozšíření Chrome vyvinuté http://mycityplace.com, a jeho hlavní funkcí je „This extension shows a business profile, ratings, and reviews from a phone number in the current page“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření MyCityPlace - Find Business Reviews & Ratings

Stáhněte si soubory rozšíření MyCityPlace - Find Business Reviews & Ratings ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název MyCityPlace - Find Business Reviews & Ratings MyCityPlace - Find Business Reviews & Ratings
ID clkkhfcknlpbljhdmhffcmghmegfdalb
Oficiální URL https://chrome.google.com/webstore/detail/clkkhfcknlpbljhdmhffcmghmegfdalb
Popis This extension shows a business profile, ratings, and reviews from a phone number in the current page
Velikost souboru 129 KB
Počet instalací 19
Aktuální Verze 1.0
Poslední Aktualizace 2015-11-19
Datum Vydání 2015-11-19
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář http://mycityplace.com
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
    ]
}