Mark As Read

Mark a page as read by clicking on the extension icon.

Co to jest Mark As Read?

Mark As Read to rozszerzenie Chrome opracowane przez edoreld, a jego główną funkcją jest „Mark a page as read by clicking on the extension icon.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Mark As Read

Pobierz pliki rozszerzeń Mark As Read 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

                        Extra Features:
 - Backup & Restore links

To activate these extra features, right click on the extension icon and click on Options.                    

Podstawowe informacje o rozszerzeniu

Nazwa Mark As Read Mark As Read
ID hiflhkmicfagennabmnfcnnlpkmidfjj
Oficjalny URL https://chromewebstore.google.com/detail/mark-as-read/hiflhkmicfagennabmnfcnnlpkmidfjj
Opis Mark a page as read by clicking on the extension icon.
Rozmiar pliku 11.28 KB
Liczba instalacji 550
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2022-03-11
Data Publikacji 2020-05-09
Ocena 3.73/5 Łącznie 15 Oceny
Deweloper edoreld
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/edoreld/mark-as-read
Adres URL Strony Pomocy https://github.com/edoreld/mark-as-read/issues
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Mark As Read",
    "version": "1.0.0",
    "description": "Mark a page as read by clicking on the extension icon. ",
    "icons": {
        "128": "icon_128.png",
        "48": "icon_48.png",
        "16": "icon_16.png"
    },
    "browser_action": [],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "mark_page": {
            "suggested_key": {
                "default": "Ctrl+Shift+Z"
            },
            "description": "Mark\/unmark the current page"
        }
    },
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "downloads",
        "unlimitedStorage"
    ],
    "options_page": "options.html"
}