Twilar

Save web contents to Twilar

什么是Twilar?

Twilar是由https://twilar.com开发的Chrome扩展程序,该扩展的主要功能是“Save web contents to Twilar”。

扩展截图

screenshot

下载Twilar扩展crx文件

下载Twilar扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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:\/\/*\/*"
    ]
}