iFood Plus
Melhora a ordenação dos restaurantes no iFood e inclui a quantidade de avaliações.
Was ist iFood Plus?
iFood Plus ist eine Chrome-Erweiterung, die von natenho entwickelt wurde, und ihr Hauptmerkmal ist "Melhora a ordenação dos restaurantes no iFood e inclui a quantidade de avaliações.".
Erweiterungsscreenshots
iFood Plus-Erweiterungs-CRX-Datei herunterladen
Laden Sie iFood Plus-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
Melhora a ordenação dos restaurantes no iFood e inclui a quantidade de avaliações.
O critério usado para ordenar os restaurantes é o seguinte:
- Avaliação
- Preço de Entrega
- Selo de Super Restaurante
- Tempo de entrega
- Distância
Esta extensão não tem qualquer relação com o iFood ou parceiros e não está associada a nenhuma marca comercial. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | njhcfcbgfnfffjhkkmdcohipfmimdelh |
| Offizielle URL | https://chromewebstore.google.com/detail/ifood-plus/njhcfcbgfnfffjhkkmdcohipfmimdelh |
| Beschreibung | Melhora a ordenação dos restaurantes no iFood e inclui a quantidade de avaliações. |
| Dateigröße | 12.77 KB |
| Installationsanzahl | 122 |
| Aktuelle Version | 0.1.0 |
| Letztes Update | 2021-12-21 |
| Veröffentlichungsdatum | 2021-12-19 |
| Bewertung | 3.00/5 Insgesamt 2 Bewertungen |
| Entwickler | natenho |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | pt-BR |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "iFood Plus",
"description": "Melhora a ordena\u00e7\u00e3o dos restaurantes no iFood e inclui a quantidade de avalia\u00e7\u00f5es.",
"version": "0.1.0",
"action": {
"default_icon": "icon96.png",
"default_popup": "popup.html"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.ifood.com.br\/*"
],
"js": [
"arrive.min.js",
"debug.js",
"main.js"
],
"run_at": "document_end"
}
],
"host_permissions": [
"*:\/\/*.ifood.com.br\/*"
],
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"96": "icon96.png"
},
"web_accessible_resources": [
{
"resources": [
"wait.svg"
],
"matches": [
"*:\/\/*.ifood.com.br\/*"
]
}
]
} | |