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 là gì?

MyCityPlace - Find Business Reviews & Ratings là một tiện ích mở rộng Chrome được phát triển bởi http://mycityplace.com, và tính năng chính của nó là "This extension shows a business profile, ratings, and reviews from a phone number in the current page".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng MyCityPlace - Find Business Reviews & Ratings

Tải xuống các tệp mở rộng MyCityPlace - Find Business Reviews & Ratings dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên MyCityPlace - Find Business Reviews & Ratings MyCityPlace - Find Business Reviews & Ratings
ID clkkhfcknlpbljhdmhffcmghmegfdalb
URL Chính Thức https://chrome.google.com/webstore/detail/clkkhfcknlpbljhdmhffcmghmegfdalb
Mô tả This extension shows a business profile, ratings, and reviews from a phone number in the current page
Kích Thước Tệp 129 KB
Số Lần Cài Đặt 19
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2015-11-19
Ngày Phát Hành 2015-11-19
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển http://mycityplace.com
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}