Slates

Never miss out on what your friends are reading.

Slatesคืออะไร?

Slates เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://slates.app และคุณลักษณะหลักของมันคือ "Never miss out on what your friends are reading."

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

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Slates ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Use this extension to easily save and share links with your friends on slates.app.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Slates Slates
ID cmapaaekpfldnmdaeognnchjlihlcgpd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/slates/cmapaaekpfldnmdaeognnchjlihlcgpd
คำอธิบาย Never miss out on what your friends are reading.
ขนาดไฟล์ 637 KB
จำนวนการติดตั้ง 30
เวอร์ชันปัจจุบัน Slates Beta 1.0
อัปเดตครั้งล่าสุด 2022-04-28
วันที่เผยแพร่ 2022-01-27
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา https://slates.app
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://slates.app
URL หน้าช่วยเหลือ https://slates.app
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Never miss out on what your friends are reading.",
    "version": "1.0.0",
    "manifest_version": 3,
    "name": "Slates",
    "version_name": "Slates Beta 1.0",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "options_page": "options.html",
    "action": {
        "default_popup": "popup.html",
        "default_icon": "SlatesLogo2.png"
    },
    "permissions": [
        "tabs",
        "storage",
        "commands"
    ],
    "icons": {
        "128": "slates.ico"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "commands": {
        "_execute_action": {
            "suggested_key": "Ctrl+Shift+L",
            "description": "Open Slates"
        },
        "addNode": {
            "suggested_key": "Ctrl+Shift+S",
            "description": "Add link"
        }
    },
    "web_accessible_resources": [
        {
            "resources": [
                "SlatesLogo.svg",
                "SlatesLogo2.png",
                "SlatesLogoDark.svg",
                "SlatesLogoLight.svg",
                "slates.ico"
            ],
            "matches": []
        }
    ]
}