Twilar

Save web contents to Twilar

Twilarคืออะไร?

Twilar เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://twilar.com และคุณลักษณะหลักของมันคือ "Save web contents to Twilar"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twilar

ดาวน์โหลดไฟล์ส่วนขยาย 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:\/\/*\/*"
    ]
}