Meetup Tools
Enhancments for meetup.com
Was ist Meetup Tools?
Meetup Tools ist eine Chrome-Erweiterung, die von guya.net entwickelt wurde, und ihr Hauptmerkmal ist "Enhancments for meetup.com".
Erweiterungsscreenshots
Meetup Tools-Erweiterungs-CRX-Datei herunterladen
Laden Sie Meetup Tools-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
Meetup Tools is a small extension that is meant to enhance your meetup.com experience, and mainly does 3 things: 1. It shows you your place in the queue while on the waiting list. 2. It shows you your status for every meetup. 3. It takes you to meetup.com with one click. Meetup.com Waitlists are almost always first come first serve. When you are on the waitlist, Meetup.com doesn't tell what is your position in the queue. This extension will tell you where you are in the queue so you'll be able to better estimate your chances of getting in. Browse any meetup and it'll show you your current status. If you are not in the meetup.com website, clicking the icon will take you there. :)
Grundlegende Informationen zur Erweiterung
Name | |
ID | okfdhdfbdobnclkegpfpepihhbbmapcj |
Offizielle URL | https://chrome.google.com/webstore/detail/meetup-tools/okfdhdfbdobnclkegpfpepihhbbmapcj |
Beschreibung | Enhancments for meetup.com |
Dateigröße | 60.96 KB |
Installationsanzahl | 200 |
Aktuelle Version | 1.0.2 |
Letztes Update | 2018-04-15 |
Veröffentlichungsdatum | 2018-04-15 |
Bewertung | 3.00/5 Insgesamt 5 Bewertungen |
Entwickler | guya.net |
Zahlungsart | free |
Unterstützte Sprachen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Meetup Tools", "version": "1.0.2", "description": "Enhancments for meetup.com", "background": { "scripts": [ "meetup.js" ] }, "permissions": [ "*:\/\/*.meetup.com\/*", "webNavigation", "tabs", "notifications" ], "browser_action": { "default_icon": "logo_19.png" }, "web_accessible_resources": [ "logo_48.png" ], "content_scripts": [ { "matches": [ "*:\/\/*.meetup.com\/*" ], "js": [ "jquery-1.10.2.min.js", "content.js" ], "run_at": "document_end", "all_frames": false } ], "icons": { "48": "logo_48.png", "128": "logo_128.png" }, "manifest_version": 2 } |