10bis price after discount
This extension displays the prices after discount in 10bis menu page
Co to jest 10bis price after discount?
10bis price after discount to rozszerzenie Chrome opracowane przez uri.mor, a jego główną funkcją jest „This extension displays the prices after discount in 10bis menu page”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia 10bis price after discount
Pobierz pliki rozszerzeń 10bis price after discount w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Display the prices of 10bis restaurants after discount
Podstawowe informacje o rozszerzeniu
Nazwa | 10bis price after discount |
ID | cjeenmkpfahdbhhgobcodngnjoahebpf |
Oficjalny URL | https://chromewebstore.google.com/detail/10bis-price-after-discoun/cjeenmkpfahdbhhgobcodngnjoahebpf |
Opis | This extension displays the prices after discount in 10bis menu page |
Rozmiar pliku | 8.13 KB |
Liczba instalacji | 57 |
Aktualna Wersja | 0.3.7 |
Ostatnia Aktualizacja | 2019-08-27 |
Data Publikacji | 2019-08-26 |
Ocena | 5.00/5 Łącznie 3 Oceny |
Deweloper | uri.mor |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/urimor/10bis-discount-extension |
Obsługiwane Języki | iw |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "10bis price after discount", "description": "This extension displays the prices after discount in 10bis menu page", "version": "0.3.7", "background": { "persistent": false, "scripts": [ "background.js" ] }, "content_scripts": [ { "css": [ "styles.css" ], "js": [ "10bisExtension.js" ], "matches": [ "https:\/\/www.10bis.co.il\/Restaurants\/Menu\/*" ] }, { "css": [ "styles.css" ], "js": [ "10bisExtension-next.js" ], "matches": [ "https:\/\/www.10bis.co.il\/next\/*" ] } ], "page_action": { "default_icon": "icon.png", "default_title": "10bis Price After Discount" }, "icons": { "128": "icon.png" } } |