Yelpify
Show Yelp ratings on Google, GrubHub, OpenTable and more sites.
Yelpifyคืออะไร?
Yelpify เป็นส่วนขยายของ Chrome ที่พัฒนาโดย orionmelt และคุณลักษณะหลักของมันคือ "Show Yelp ratings on Google, GrubHub, OpenTable and more sites."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Yelpify
ดาวน์โหลดไฟล์ส่วนขยาย Yelpify ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Yelpify |
ID | fofoloachecafflhocpecbhkdmmmoohb |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/yelpify/fofoloachecafflhocpecbhkdmmmoohb |
คำอธิบาย | Show Yelp ratings on Google, GrubHub, OpenTable and more sites. |
ขนาดไฟล์ | 23.48 KB |
จำนวนการติดตั้ง | 94 |
เวอร์ชันปัจจุบัน | 1.0.5 |
อัปเดตครั้งล่าสุด | 2016-04-29 |
วันที่เผยแพร่ | 2016-04-29 |
คะแนน | 3.25/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | orionmelt |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Yelpify", "version": "1.0.5", "manifest_version": 2, "description": "Show Yelp ratings on Google, GrubHub, OpenTable and more sites.", "icons": { "16": "images\/icons\/icon-16.png", "32": "images\/icons\/icon-32.png", "48": "images\/icons\/icon-48.png", "128": "images\/icons\/icon-128.png" }, "permissions": [ "storage" ], "options_page": "options.html", "web_accessible_resources": [ "images\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*.google.com\/*", "https:\/\/*.google.com\/*" ], "css": [ "styles\/sites\/google.css" ], "js": [ "scripts\/lib\/mutation-summary.js", "scripts\/yelp.js", "scripts\/sites\/google.js" ], "run_at": "document_start" }, { "matches": [ "http:\/\/*.grubhub.com\/*", "https:\/\/*.grubhub.com\/*", "http:\/\/*.seamless.com\/*", "https:\/\/*.seamless.com\/*" ], "css": [ "styles\/sites\/grubhub.css" ], "js": [ "scripts\/lib\/mutation-summary.js", "scripts\/yelp.js", "scripts\/sites\/grubhub.js" ], "run_at": "document_start" }, { "matches": [ "http:\/\/*.opentable.com\/*", "https:\/\/*.opentable.com\/*" ], "css": [ "styles\/sites\/opentable.css" ], "js": [ "scripts\/lib\/mutation-summary.js", "scripts\/yelp.js", "scripts\/sites\/opentable.js" ], "run_at": "document_start" }, { "matches": [ "http:\/\/*.tripadvisor.com\/*", "https:\/\/*.tripadvisor.com\/*" ], "css": [ "styles\/sites\/tripadvisor.css" ], "js": [ "scripts\/lib\/mutation-summary.js", "scripts\/yelp.js", "scripts\/sites\/tripadvisor.js" ], "run_at": "document_start" } ] } |