Yelpify
Show Yelp ratings on Google, GrubHub, OpenTable and more sites.
Yelpify là gì?
Yelpify là một tiện ích mở rộng Chrome được phát triển bởi orionmelt, và tính năng chính của nó là "Show Yelp ratings on Google, GrubHub, OpenTable and more sites.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Yelpify
Tải xuống các tệp mở rộng Yelpify 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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Yelpify |
ID | fofoloachecafflhocpecbhkdmmmoohb |
URL Chính Thức | https://chromewebstore.google.com/detail/yelpify/fofoloachecafflhocpecbhkdmmmoohb |
Mô tả | Show Yelp ratings on Google, GrubHub, OpenTable and more sites. |
Kích Thước Tệp | 23.48 KB |
Số Lần Cài Đặt | 94 |
Phiên Bản Hiện Tại | 1.0.5 |
Cập Nhật Lần Cuối | 2016-04-29 |
Ngày Phát Hành | 2016-04-29 |
Đánh Giá | 3.25/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | orionmelt |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } ] } |