Welovelinks
Convert links of all your active tabs to a single shortlink for easy sharing.
什么是Welovelinks?
Welovelinks是由https://welovelinks.com开发的Chrome扩展程序,该扩展的主要功能是“Convert links of all your active tabs to a single shortlink for easy sharing.”。
扩展截图
下载Welovelinks扩展crx文件
下载Welovelinks扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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!
扩展基本信息
名称 | Welovelinks |
ID | hnmlfpgoebmkolekpnnbgakklddafjfl |
官方URL | https://chromewebstore.google.com/detail/welovelinks/hnmlfpgoebmkolekpnnbgakklddafjfl |
简介 | Convert links of all your active tabs to a single shortlink for easy sharing. |
文件大小 | 12.08 KB |
安装次数 | 130 |
当前版本 | 1.2.0 |
更新时间 | 2021-07-17 |
上架时间 | 2021-05-18 |
评分 | 5.00/5 共1次评分 |
开发者 | https://welovelinks.com |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://www.welovelinks.com/ |
支持的语言 | 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" ] } ] } |