Mark As Read
Mark a page as read by clicking on the extension icon.
Wat is Mark As Read?
Mark As Read is een Chrome-extensie ontwikkeld door edoreld, en de belangrijkste functie is "Mark a page as read by clicking on the extension icon.".
Extensie Screenshots
Download het CRX-bestand van de extensie Mark As Read
Download Mark As Read-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Extra Features: - Backup & Restore links To activate these extra features, right click on the extension icon and click on Options.
Basisinformatie over de Extensie
Naam | Mark As Read |
ID | hiflhkmicfagennabmnfcnnlpkmidfjj |
Officiële URL | https://chromewebstore.google.com/detail/mark-as-read/hiflhkmicfagennabmnfcnnlpkmidfjj |
Beschrijving | Mark a page as read by clicking on the extension icon. |
Bestandsgrootte | 11.28 KB |
Aantal Installaties | 550 |
Huidige Versie | 1.0.0 |
Laatst Bijgewerkt | 2022-03-11 |
Publicatiedatum | 2020-05-09 |
Beoordeling | 3.73/5 Totaal 15 Beoordelingen |
Ontwikkelaar | edoreld |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/edoreld/mark-as-read |
Help Pagina-URL | https://github.com/edoreld/mark-as-read/issues |
Ondersteunde Talen | 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" } |