Reading List

A read-it-later browser extension for people with overly ambitious bookmarking habits.

What is Reading List?

Reading List is a Chrome extension developed by http://emanuelfeld.github.io, and its main feature is "A read-it-later browser extension for people with overly ambitious bookmarking habits.".

Extension Screenshots

screenshot
screenshot

Download Reading List Extension CRX File

Download Reading List 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

                        * All links are removed after a week, so either read it or forget about it

* Pages bookmarked on the same day are grouped together

* New bookmarks are placed at the bottom, rather than the top, so you are less distracted by flashy new links

* URLs are backed up to the Internet Archive automatically                    

Extension Basic Information

Name Reading List Reading List
ID doaafjmonnoioanhdjllgjofacelikhl
Official URL https://chrome.google.com/webstore/detail/reading-list/doaafjmonnoioanhdjllgjofacelikhl
Description A read-it-later browser extension for people with overly ambitious bookmarking habits.
File Size 17.24 KB
Installation Count 146
Current Version 0.4
Last Updated 2018-01-09
Publish Date 2018-01-09
Rating 3.50/5 Total 2 Ratings
Developer http://emanuelfeld.github.io
Email [email protected]
Payment Type free
Extension Website https://github.com/emanuelfeld/reading-list
Help Page URL https://github.com/emanuelfeld/reading-list
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reading List",
    "version": "0.4",
    "description": "A read-it-later browser extension for people with overly ambitious bookmarking habits.",
    "author": "Emanuel Feld",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "web_accessible_resources": [
        "popup.html",
        "index.html",
        "js\/index.js",
        "js\/popup.js"
    ],
    "permissions": [
        "https:\/\/web.archive.org\/*",
        "contextMenus",
        "storage",
        "tabs"
    ],
    "browser_action": {
        "default_title": "Reading List",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "assets\/icon16.png",
            "48": "assets\/icon48.png",
            "128": "assets\/icon128.png"
        }
    }
}