Yelpify
Show Yelp ratings on Google, GrubHub, OpenTable and more sites.
什麼是Yelpify?
Yelpify是由orionmelt開發的Chrome擴展程式,該擴展的主要功能是“Show Yelp ratings on Google, GrubHub, OpenTable and more sites.”。
擴展截圖
下載Yelpify擴展crx文件
下載Yelpify擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
擴展基本資訊
名稱 | Yelpify |
ID | fofoloachecafflhocpecbhkdmmmoohb |
官方網址 | 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" } ] } |