Read Later Box

Read Later Box

Read Later Boxคืออะไร?

Read Later Box เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Kunihiro Ando และคุณลักษณะหลักของมันคือ "Read Later Box"

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Read Later Box is a Chrome extension for easily Store links by drag and drop.

  

This extension allows you to save a page for later reading.

You can DragDrop a link to Read Later Box.




Sync--------------------------------------
 Using Bookmarks
 Minimum Chrome Version 38                    

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

ชื่อ Read Later Box Read Later Box
ID gmnimllnkdakojkiejmmgfjapmhngahl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/read-later-box/gmnimllnkdakojkiejmmgfjapmhngahl
คำอธิบาย Read Later Box
ขนาดไฟล์ 186 KB
จำนวนการติดตั้ง 93
เวอร์ชันปัจจุบัน 2.8
อัปเดตครั้งล่าสุด 2015-05-05
วันที่เผยแพร่ 2015-05-04
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Kunihiro Ando
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Read Later Box",
    "version": "2.8",
    "description": "Read Later Box",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "all_frames": false,
            "run_at": "document_start",
            "js": [
                "contentscript.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "icon19.png",
        "default_title": "Read Later Box",
        "default_popup": "popup.html"
    },
    "commands": {
        "myCommandREADLATER": {
            "suggested_key": {
                "default": "Alt+L"
            },
            "description": "Send add read command"
        }
    },
    "web_accessible_resources": [
        "menu.png",
        "stack.html",
        "popup.html",
        "iframe.html"
    ],
    "content_security_policy": "script-src 'self';img-src *; frame-src *; object-src 'self'",
    "permissions": [
        "chrome:\/\/favicon\/*",
        "tabs",
        "bookmarks"
    ]
}