Read Later Box

Read Later Box

What is Read Later Box?

Read Later Box is a Chrome extension developed by Kunihiro Ando, and its main feature is "Read Later Box".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Read Later Box Extension CRX File

Download Read Later Box extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Read Later Box Read Later Box
ID gmnimllnkdakojkiejmmgfjapmhngahl
Official URL https://chromewebstore.google.com/detail/read-later-box/gmnimllnkdakojkiejmmgfjapmhngahl
Description Read Later Box
File Size 186 KB
Installation Count 93
Current Version 2.8
Last Updated 2015-05-05
Publish Date 2015-05-04
Rating 5.00/5 Total 1 Ratings
Developer Kunihiro Ando
Payment Type free
Supported Languages 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"
    ]
}