Reading List

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

O que é Reading List?

Reading List é uma extensão do Chrome desenvolvida por http://emanuelfeld.github.io, e sua principal característica é "A read-it-later browser extension for people with overly ambitious bookmarking habits.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Reading List

Baixe arquivos de extensão Reading List no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        * 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                    

Informações Básicas da Extensão

Nome Reading List Reading List
ID doaafjmonnoioanhdjllgjofacelikhl
URL Oficial https://chrome.google.com/webstore/detail/reading-list/doaafjmonnoioanhdjllgjofacelikhl
Descrição A read-it-later browser extension for people with overly ambitious bookmarking habits.
Tamanho do Arquivo 17.24 KB
Contagem de Instalações 146
Versão Atual 0.4
Última Atualização 2018-01-09
Data de Publicação 2018-01-09
Classificação 3.50/5 Total de 2 Avaliações
Desenvolvedor http://emanuelfeld.github.io
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/emanuelfeld/reading-list
URL da Página de Ajuda https://github.com/emanuelfeld/reading-list
Idiomas Suportados 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"
        }
    }
}