Quiche Reader

Save web pages to Quiche Reader.

Co to jest Quiche Reader?

Quiche Reader to rozszerzenie Chrome opracowane przez https://quiche.works, a jego główną funkcją jest „Save web pages to Quiche Reader.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Quiche Reader

Pobierz pliki rozszerzeń Quiche Reader 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

                        Save interesting web pages and links to your queue.
Read them later in Quiche Reader on your iOS devices*.

• Tap the toolbar button to save the current page.
• Control+click to save a link from the context menu without opening it.

* You must be signed in with the same iCloud account on your Mac and iOS devices.                    

Podstawowe informacje o rozszerzeniu

Nazwa Quiche Reader Quiche Reader
ID lbdeeclknfmbmnknkjpkgejedlldhakb
Oficjalny URL https://chromewebstore.google.com/detail/quiche-reader/lbdeeclknfmbmnknkjpkgejedlldhakb
Opis Save web pages to Quiche Reader.
Rozmiar pliku 60.22 KB
Liczba instalacji 268
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2023-04-08
Data Publikacji 2019-08-27
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper https://quiche.works
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://quiche.works/reader
Adres URL Strony Pomocy https://quiche.works/reader/support
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Quiche Reader",
    "version": "1.1",
    "description": "Save web pages to Quiche Reader.",
    "icons": {
        "16": "icons\/default16.png",
        "32": "icons\/default32.png",
        "128": "icons\/default128.png"
    },
    "browser_action": {
        "default_title": "Save to Quiche Reader",
        "default_icon": {
            "16": "icons\/toolbar16.png",
            "32": "icons\/toolbar32.png",
            "128": "icons\/toolbar128.png"
        }
    },
    "background": {
        "scripts": [
            "auth.js",
            "cloudkiterror.js",
            "cloudkit.js",
            "queue.js",
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/auth.readingqueue.app\/*"
            ],
            "js": [
                "auth-notify.js"
            ]
        },
        {
            "matches": [
                ""
            ],
            "css": [
                "styles.css"
            ],
            "js": [
                "handlebars.js",
                "overlay.js",
                "overlay-setup.js"
            ]
        }
    ],
    "permissions": [
        "contextMenus",
        "activeTab",
        "storage"
    ]
}