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! 擴展基本資訊
| 名稱 | |
| ID | hnmlfpgoebmkolekpnnbgakklddafjfl |
| 官方網址 | 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"
]
}
]
} | |