Read Later Box

Read Later Box

Read Later Box란 무엇입니까?

Read Later Box은(는) Kunihiro Ando에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Read Later Box"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Read Later Box 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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"
    ]
}