Reading List

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

Co to jest Reading List?

Reading List to rozszerzenie Chrome opracowane przez http://emanuelfeld.github.io, a jego główną funkcją jest „A read-it-later browser extension for people with overly ambitious bookmarking habits.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Reading List

Pobierz pliki rozszerzeń Reading List w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        * 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                    

Podstawowe informacje o rozszerzeniu

Nazwa Reading List Reading List
ID doaafjmonnoioanhdjllgjofacelikhl
Oficjalny URL https://chrome.google.com/webstore/detail/reading-list/doaafjmonnoioanhdjllgjofacelikhl
Opis A read-it-later browser extension for people with overly ambitious bookmarking habits.
Rozmiar pliku 17.24 KB
Liczba instalacji 146
Aktualna Wersja 0.4
Ostatnia Aktualizacja 2018-01-09
Data Publikacji 2018-01-09
Ocena 3.50/5 Łącznie 2 Oceny
Deweloper http://emanuelfeld.github.io
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/emanuelfeld/reading-list
Adres URL Strony Pomocy https://github.com/emanuelfeld/reading-list
Obsługiwane Języki 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"
        }
    }
}