Mark As Read
Mark a page as read by clicking on the extension icon.
Was ist Mark As Read?
Mark As Read ist eine Chrome-Erweiterung, die von edoreld entwickelt wurde, und ihr Hauptmerkmal ist "Mark a page as read by clicking on the extension icon.".
Erweiterungsscreenshots
Mark As Read-Erweiterungs-CRX-Datei herunterladen
Laden Sie Mark As Read-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Extra Features: - Backup & Restore links To activate these extra features, right click on the extension icon and click on Options.
Grundlegende Informationen zur Erweiterung
Name | Mark As Read |
ID | hiflhkmicfagennabmnfcnnlpkmidfjj |
Offizielle URL | https://chromewebstore.google.com/detail/mark-as-read/hiflhkmicfagennabmnfcnnlpkmidfjj |
Beschreibung | Mark a page as read by clicking on the extension icon. |
Dateigröße | 11.28 KB |
Installationsanzahl | 550 |
Aktuelle Version | 1.0.0 |
Letztes Update | 2022-03-11 |
Veröffentlichungsdatum | 2020-05-09 |
Bewertung | 3.73/5 Insgesamt 15 Bewertungen |
Entwickler | edoreld |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/edoreld/mark-as-read |
Hilfeseite URL | https://github.com/edoreld/mark-as-read/issues |
Unterstützte Sprachen | 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" } |