Welovelinks

Convert links of all your active tabs to a single shortlink for easy sharing.

Welovelinks là gì?

Welovelinks là một tiện ích mở rộng Chrome được phát triển bởi https://welovelinks.com, và tính năng chính của nó là "Convert links of all your active tabs to a single shortlink for easy sharing.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Welovelinks

Tải xuống các tệp mở rộng Welovelinks dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Welovelinks Welovelinks
ID hnmlfpgoebmkolekpnnbgakklddafjfl
URL Chính Thức https://chromewebstore.google.com/detail/welovelinks/hnmlfpgoebmkolekpnnbgakklddafjfl
Mô tả Convert links of all your active tabs to a single shortlink for easy sharing.
Kích Thước Tệp 12.08 KB
Số Lần Cài Đặt 130
Phiên Bản Hiện Tại 1.2.0
Cập Nhật Lần Cuối 2021-07-17
Ngày Phát Hành 2021-05-18
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://welovelinks.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.welovelinks.com/
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}