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".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου 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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα MyCityPlace - Find Business Reviews & Ratings MyCityPlace - Find Business Reviews & Ratings
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"
    ]
}