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."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Welovelinks 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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"
            ]
        }
    ]
}