Reading List

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

什么是Reading List?

Reading List是由http://emanuelfeld.github.io开发的Chrome扩展程序,该扩展的主要功能是“A read-it-later browser extension for people with overly ambitious bookmarking habits.”。

扩展截图

screenshot
screenshot

下载Reading List扩展crx文件

下载Reading List扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        * 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                    

扩展基本信息

名称 Reading List Reading List
ID doaafjmonnoioanhdjllgjofacelikhl
官方URL https://chrome.google.com/webstore/detail/reading-list/doaafjmonnoioanhdjllgjofacelikhl
简介 A read-it-later browser extension for people with overly ambitious bookmarking habits.
文件大小 17.24 KB
安装次数 146
当前版本 0.4
更新时间 2018-01-09
上架时间 2018-01-09
评分 3.50/5 共2次评分
开发者 http://emanuelfeld.github.io
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/emanuelfeld/reading-list
帮助页面URL https://github.com/emanuelfeld/reading-list
支持的语言 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"
        }
    }
}