Ølmonopolet
Legger til Untappd informasjon på Vinmonopolet.no
What is Ølmonopolet?
Ølmonopolet is a Chrome extension developed by https://olmonopolet.app, and its main feature is "Legger til Untappd informasjon på Vinmonopolet.no".
Extension Screenshots
Download Ølmonopolet Extension CRX File
Download Ølmonopolet extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Denne chrome utvidelsen legger til ekstra informasjon på øl, sider og mjød på Vinmonopolet.no. Informasjonen er hentet fra Untappd og blir oppfrisket hver dag av serveren til Ølmonopolet. Utvidelsen lar deg også logge inn med Untappd brukeren din. Da vil dine personlige ratinger vises på alle innsjekkede øl. Denne utvidelsen vil sende informasjon om din surfing på Vinmonopolet til Ølmonopolet sin server for å kunne gi den korrekte informasjonen tilbake. Se vår personvernerklæring for mer informasjon. Funksjoner: - Legger til Untappd rating, IBU og stil til alle øl, sider og mjød på Vinmonopolet sin nettbutikk. Change log: - 0.2.15 Fix breaking changes from Vinmonopolets website - 0.2.13 Fix extension after breaking changes on Vinmonopolet - 0.2.12 Fix bug where link to user checkins was broken - 0.2.11: Fix bug where badges were not shown if no Untappd match - 0.2.6: Correctly shows message if Vinmonopolet adds a beer between database updates - 0.2.5: Now correctly fetches new ratings on change of sorting in search - 0.2.2: Fix bug where newest Chrome version would block authentication requests - 0.2.1: Fix bug where ratings would not show in cart - 0.2.0: Adds badge system. Fixes bugs. - 0.1.5: Now works in Cart and Wishlists. Adds IBU and Untappd style to detail view of product, and Untappd style to overview, cart and wishlists. - 0.1.4: New design with star ratings - 0.1.3: Add support for mead and cider. - 0.1.2: Security fixes. Now opens Untappd links in a new tab. - 0.1.1: Bug fixes. - 0.1.0: Adds Untappd integration. Logging in with Untappd now shows your checked in beers and rating. - 0.0.6: Extension now loads when browsing beers from a selected store. - 0.0.5: Now correctly responds to change in search filters and store change. - 0.0.4: Bug fixes. - 0.0.3: Added button in detail view to suggest a correct beer match. - 0.0.2: Bug fixes. - 0.0.1: Initial.
Extension Basic Information
Name | Ølmonopolet |
ID | dfajjomebnpadnigjockaihaofphflcj |
Official URL | https://chromewebstore.google.com/detail/%C3%B8lmonopolet/dfajjomebnpadnigjockaihaofphflcj |
Description | Legger til Untappd informasjon på Vinmonopolet.no |
File Size | 95.68 KB |
Installation Count | 347 |
Current Version | 0.2.15 |
Last Updated | 2024-02-02 |
Publish Date | 2021-08-08 |
Rating | 5.00/5 Total 1 Ratings |
Developer | https://olmonopolet.app |
[email protected] | |
Payment Type | free |
Extension Website | https://www.facebook.com/BeermonopolyNO |
Help Page URL | https://ko-fi.com/beermonopoly/posts |
Privacy Policy Page URL | https://olmonopolet.app/privacy |
Supported Languages | no |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "\u00d8lmonopolet", "version": "0.2.15", "description": "Legger til Untappd informasjon p\u00e5 Vinmonopolet.no", "icons": { "16": "assets\/img\/icon16.png", "48": "assets\/img\/icon48.png", "128": "assets\/img\/icon128.png" }, "background": { "service_worker": "src\/background\/background.js" }, "content_scripts": [ { "css": [ "assets\/css\/styles.css" ], "js": [ "assets\/js\/arrive.min.js", "assets\/js\/sweetalert2.all.min.js", "assets\/js\/functions.js", "assets\/js\/sentry.min.js", "src\/content\/details.js" ], "matches": [ "https:\/\/*.vinmonopolet.no\/*\/*\/*\/p\/*" ], "run_at": "document_end" }, { "css": [ "assets\/css\/styles.css" ], "js": [ "assets\/js\/arrive.min.js", "assets\/js\/functions.js", "assets\/js\/sentry.min.js", "src\/content\/overview.js" ], "matches": [ "https:\/\/*.vinmonopolet.no\/search\/?q=*", "https:\/\/*.vinmonopolet.no\/search?q=*", "https:\/\/*.vinmonopolet.no\/vmp\/search\/?q=*", "https:\/\/*.vinmonopolet.no\/search?*" ], "run_at": "document_end" }, { "css": [ "assets\/css\/styles.css" ], "js": [ "assets\/js\/arrive.min.js", "assets\/js\/functions.js", "assets\/js\/sentry.min.js", "src\/content\/cart.js" ], "matches": [ "https:\/\/*.vinmonopolet.no\/cart", "https:\/\/*.vinmonopolet.no\/cart\/*", "https:\/\/*.vinmonopolet.no\/vmp\/cart", "https:\/\/*.vinmonopolet.no\/vmp\/cart\/*" ], "run_at": "document_end" }, { "css": [ "assets\/css\/styles.css" ], "js": [ "assets\/js\/arrive.min.js", "assets\/js\/functions.js", "assets\/js\/sentry.min.js", "src\/content\/wishlist.js" ], "matches": [ "https:\/\/*.vinmonopolet.no\/wishlist\/*" ], "run_at": "document_end" } ], "web_accessible_resources": [ { "resources": [ "assets\/img\/untappd.svg", "assets\/img\/user.svg", "assets\/img\/check-solid.svg", "assets\/img\/star-solid.svg", "assets\/img\/star-hollow.svg", "assets\/img\/star-half.svg" ], "matches": [ "https:\/\/*.vinmonopolet.no\/*" ] } ], "action": { "default_popup": "src\/popup\/popup.html" }, "permissions": [ "identity", "storage" ], "host_permissions": [ "https:\/\/untappd.com\/oauth\/authorize\/*", "https:\/\/auth.beermonopoly.com\/connect\/untappd\/*", "https:\/\/api.beermonopoly.com\/auth\/*" ] } |