Bretzel
Your best chance to match with your secret crush
What is Bretzel?
Bretzel is a Chrome extension developed by Bretzel Club, and its main feature is "Your best chance to match with your secret crush".
Extension Screenshots
Download Bretzel Extension CRX File
Download Bretzel 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
Ever liked someone but never dared to tell them? Bretzel is your chance to match with your secret crush All you need is a LinkedIn profile. 1. Turn LinkedIn into a bretzel party Switch the bretzel mode ON — you'll see bretzels next to everyone. Switch it OFF anytime. 2. Give your bretzels under the radar Give a bretzel to your crush, they will never know about it, unless they give you a bretzel too. Maybe they already have? 3. Ooh la la, it's a match! You just got bretzel’d! See all your matches in a dedicated space, and start chatting!
Extension Basic Information
Name | Bretzel |
ID | dilncohfamcdmpindiekhibhdilfjnnb |
Official URL | https://chromewebstore.google.com/detail/bretzel/dilncohfamcdmpindiekhibhdilfjnnb |
Description | Your best chance to match with your secret crush |
File Size | 1.2 MB |
Installation Count | 55 |
Current Version | 0.2.2 |
Last Updated | 2022-06-02 |
Publish Date | 2022-01-31 |
Rating | 5.00/5 Total 7 Ratings |
Developer | Bretzel Club |
[email protected] | |
Payment Type | free |
Extension Website | https://bretzel.club |
Privacy Policy Page URL | https://bretzel.club/privacy-policy.html |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Bretzel", "description": "Your best chance to match with your secret crush", "version": "0.2.2", "manifest_version": 3, "incognito": "not_allowed", "permissions": [ "storage", "tabs", "webRequest" ], "host_permissions": [ "*:\/\/*.linkedin.com\/*", "*:\/\/localhost\/*", "https:\/\/us-central1-bretzel-in.cloudfunctions.net\/*" ], "action": { "default_popup": "popup\/index.html", "default_icon": { "128": "assets\/images\/bretzel-logo.png" } }, "web_accessible_resources": [ { "resources": [ "index.html", "assets\/images\/*", "assets\/fonts\/*" ], "matches": [ "*:\/\/*\/*" ] } ], "content_scripts": [ { "matches": [ "*:\/\/*.linkedin.com\/*" ], "js": [ "contentScripts.bundle.js" ] } ], "background": { "service_worker": "background.bundle.js" }, "icons": { "128": "assets\/images\/bretzel-logo.png" } } |