Yelpify
Show Yelp ratings on Google, GrubHub, OpenTable and more sites.
Was ist Yelpify?
Yelpify ist eine Chrome-Erweiterung, die von orionmelt entwickelt wurde, und ihr Hauptmerkmal ist "Show Yelp ratings on Google, GrubHub, OpenTable and more sites.".
Erweiterungsscreenshots
Yelpify-Erweiterungs-CRX-Datei herunterladen
Laden Sie Yelpify-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Grundlegende Informationen zur Erweiterung
Name | Yelpify |
ID | fofoloachecafflhocpecbhkdmmmoohb |
Offizielle URL | https://chromewebstore.google.com/detail/yelpify/fofoloachecafflhocpecbhkdmmmoohb |
Beschreibung | Show Yelp ratings on Google, GrubHub, OpenTable and more sites. |
Dateigröße | 23.48 KB |
Installationsanzahl | 94 |
Aktuelle Version | 1.0.5 |
Letztes Update | 2016-04-29 |
Veröffentlichungsdatum | 2016-04-29 |
Bewertung | 3.25/5 Insgesamt 4 Bewertungen |
Entwickler | orionmelt |
Zahlungsart | free |
Unterstützte Sprachen | 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" } ] } |