Reading List

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

Co je Reading List?

Reading List je rozšíření Chrome vyvinuté http://emanuelfeld.github.io, a jeho hlavní funkcí je „A read-it-later browser extension for people with overly ambitious bookmarking habits.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Reading List

Stáhněte si soubory rozšíření Reading List ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        * 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                    

Základní Informace o Rozšíření

Název Reading List Reading List
ID doaafjmonnoioanhdjllgjofacelikhl
Oficiální URL https://chrome.google.com/webstore/detail/reading-list/doaafjmonnoioanhdjllgjofacelikhl
Popis A read-it-later browser extension for people with overly ambitious bookmarking habits.
Velikost souboru 17.24 KB
Počet instalací 146
Aktuální Verze 0.4
Poslední Aktualizace 2018-01-09
Datum Vydání 2018-01-09
Hodnocení 3.50/5 Celkem 2 Hodnocení
Vývojář http://emanuelfeld.github.io
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/emanuelfeld/reading-list
URL Stránky Nápovědy https://github.com/emanuelfeld/reading-list
Podporované Jazyky 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"
        }
    }
}