Twilar

Save web contents to Twilar

Twilar란 무엇입니까?

Twilar은(는) https://twilar.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Save web contents to Twilar"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Twilar is a read-it-later app which can store web pages into iCloud. You can read it later, save it forever.
This extension can save any contents to Twilar.

You can download the Twilar app at: https://www.twilar.com/                    

확장 프로그램 기본 정보

이름 Twilar Twilar
ID fbbnpclahnehcnebgicjfbjgiincckod
공식 URL https://chromewebstore.google.com/detail/twilar/fbbnpclahnehcnebgicjfbjgiincckod
설명 Save web contents to Twilar
파일 크기 347 KB
설치 횟수 663
현재 버전 1.1.1
최근 업데이트 2022-06-14
출시 날짜 2021-09-09
평점 3.25/5 총 4 개의 평점
개발자 https://twilar.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.twilar.com
도움말 페이지 URL https://www.twilar.com
개인정보 보호 정책 페이지 URL https://www.twilar.com/privacy
지원되는 언어 en,zh-CN,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Twilar",
    "description": "Save web contents to Twilar",
    "version": "1.1.1",
    "default_locale": "en",
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/ck.js",
                "js\/vendor.js",
                "js\/content_script.js"
            ],
            "css": [
                "js\/content_script.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "js\/ck.js",
                "images\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "permissions": [
        "storage",
        "contextMenus",
        "activeTab",
        "nativeMessaging"
    ],
    "icons": {
        "16": "images\/icon.png",
        "48": "images\/icon.png",
        "128": "images\/icon.png"
    },
    "action": {
        "default_icon": "images\/icon.png"
    },
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}