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"
    ]
}