Ølmonopolet
Legger til Untappd informasjon på Vinmonopolet.no
什么是Ølmonopolet?
Ølmonopolet是由https://olmonopolet.app开发的Chrome扩展程序,该扩展的主要功能是“Legger til Untappd informasjon på Vinmonopolet.no”。
扩展截图
下载Ølmonopolet扩展crx文件
下载Ølmonopolet扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Ølmonopolet |
ID | dfajjomebnpadnigjockaihaofphflcj |
官方URL | https://chromewebstore.google.com/detail/%C3%B8lmonopolet/dfajjomebnpadnigjockaihaofphflcj |
简介 | Legger til Untappd informasjon på Vinmonopolet.no |
文件大小 | 95.68 KB |
安装次数 | 347 |
当前版本 | 0.2.15 |
更新时间 | 2024-02-02 |
上架时间 | 2021-08-08 |
评分 | 5.00/5 共1次评分 |
开发者 | https://olmonopolet.app |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://www.facebook.com/BeermonopolyNO |
帮助页面URL | https://ko-fi.com/beermonopoly/posts |
隐私政策页面URL | https://olmonopolet.app/privacy |
支持的语言 | 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\/*" ] } |