Zoom Bookmarks
Store your most used Zoom links and join your online classes with ease.
Was ist Zoom Bookmarks?
Zoom Bookmarks ist eine Chrome-Erweiterung, die von shrey entwickelt wurde, und ihr Hauptmerkmal ist "Store your most used Zoom links and join your online classes with ease.".
Erweiterungsscreenshots
Zoom Bookmarks-Erweiterungs-CRX-Datei herunterladen
Laden Sie Zoom Bookmarks-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
Store your most used Zoom links and join your online classes with ease. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | haplbihlmhnffbihdfjhgnickameiphd |
| Offizielle URL | https://chromewebstore.google.com/detail/zoom-bookmarks/haplbihlmhnffbihdfjhgnickameiphd |
| Beschreibung | Store your most used Zoom links and join your online classes with ease. |
| Dateigröße | 22.06 KB |
| Installationsanzahl | 1,081 |
| Aktuelle Version | 0.0.3 |
| Letztes Update | 2020-09-09 |
| Veröffentlichungsdatum | 2020-09-06 |
| Bewertung | 5.00/5 Insgesamt 5 Bewertungen |
| Entwickler | shrey |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"browser_action": {
"default_icon": "icons\/icon19.png",
"default_popup": "src\/browser_action\/browser_action.html",
"default_title": "Zoom Bookmarks"
},
"default_locale": "en",
"description": "Store your most used Zoom links and join your online classes with ease.",
"homepage_url": "https:\/\/www.youtube.com\/watch?v=dQw4w9WgXcQ",
"icons": {
"128": "icons\/icon128.png",
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"19": "icons\/icon19.png"
},
"background": {
"scripts": [
"src\/background.js"
]
},
"manifest_version": 2,
"name": "Zoom Bookmarks",
"permissions": [
"clipboardWrite",
"tabs",
"background",
"storage"
],
"version": "0.0.3",
"content_scripts": [
{
"matches": [
"*:\/\/*.zoom.us\/j\/*",
"*:\/\/*.zoom.us\/s\/*",
"*:\/\/*.zoom.us\/postattendee*",
"*:\/\/*.zoom.us\/wc\/leave*"
],
"js": [
"src\/content.js"
],
"css": [
"src\/content.css"
]
}
]
} | |