Welovelinks
Convert links of all your active tabs to a single shortlink for easy sharing.
Was ist Welovelinks?
Welovelinks ist eine Chrome-Erweiterung, die von https://welovelinks.com entwickelt wurde, und ihr Hauptmerkmal ist "Convert links of all your active tabs to a single shortlink for easy sharing.".
Erweiterungsscreenshots
Welovelinks-Erweiterungs-CRX-Datei herunterladen
Laden Sie Welovelinks-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
How does it work? 1. You install the extension in Chrome 2. You click on the Welovelink icon in the address bar 3. You choose a title for your link list 4. You hit the big red button 5. Voilà, that's done, all your tabs are stored in a link list with a short URL for easy sharing!
Grundlegende Informationen zur Erweiterung
Name | Welovelinks |
ID | hnmlfpgoebmkolekpnnbgakklddafjfl |
Offizielle URL | https://chromewebstore.google.com/detail/welovelinks/hnmlfpgoebmkolekpnnbgakklddafjfl |
Beschreibung | Convert links of all your active tabs to a single shortlink for easy sharing. |
Dateigröße | 12.08 KB |
Installationsanzahl | 130 |
Aktuelle Version | 1.2.0 |
Letztes Update | 2021-07-17 |
Veröffentlichungsdatum | 2021-05-18 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | https://welovelinks.com |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://www.welovelinks.com/ |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Welovelinks", "version": "1.2.0", "description": "Convert links of all your active tabs to a single shortlink for easy sharing.", "homepage_url": "https:\/\/www.welovelinks.com", "manifest_version": 2, "minimum_chrome_version": "74", "applications": { "gecko": { "id": "[email protected]", "strict_min_version": "67.0" } }, "icons": { "128": "icon.png" }, "permissions": [ "*:\/\/www.welovelinks.com\/*", "tabs" ], "browser_action": { "default_icon": "icon.png", "default_popup": "popup\/create.html" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/www.welovelinks.com\/*" ], "js": [ "content-script.js" ] } ] } |