Yelpify
Show Yelp ratings on Google, GrubHub, OpenTable and more sites.
Qu'est-ce que Yelpify ?
Yelpify est une extension Chrome développée par orionmelt, et sa fonction principale est "Show Yelp ratings on Google, GrubHub, OpenTable and more sites.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Yelpify
Téléchargez les fichiers d'extension Yelpify au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Informations de Base sur l'Extension
Nom | Yelpify |
ID | fofoloachecafflhocpecbhkdmmmoohb |
URL Officiel | https://chromewebstore.google.com/detail/yelpify/fofoloachecafflhocpecbhkdmmmoohb |
Description | Show Yelp ratings on Google, GrubHub, OpenTable and more sites. |
Taille du Fichier | 23.48 KB |
Nombre d'Installations | 94 |
Version Actuelle | 1.0.5 |
Dernière Mise à Jour | 2016-04-29 |
Date de Publication | 2016-04-29 |
Évaluation | 3.25/5 Total 4 Évaluations |
Développeur | orionmelt |
Type de Paiement | free |
Langues Prises en Charge | 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" } ] } |