Mark As Read
Mark a page as read by clicking on the extension icon.
Cos'è Mark As Read?
Mark As Read è un'estensione di Chrome sviluppata da edoreld, e la sua funzione principale è "Mark a page as read by clicking on the extension icon.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Mark As Read
Scarica i file di estensione Mark As Read in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Extra Features:
- Backup & Restore links
To activate these extra features, right click on the extension icon and click on Options. Informazioni di Base sull'Estensione
| Nome | |
| ID | hiflhkmicfagennabmnfcnnlpkmidfjj |
| URL Ufficiale | https://chromewebstore.google.com/detail/mark-as-read/hiflhkmicfagennabmnfcnnlpkmidfjj |
| Descrizione | Mark a page as read by clicking on the extension icon. |
| Dimensione del File | 11.28 KB |
| Conteggio Installazioni | 550 |
| Versione Corrente | 1.0.0 |
| Ultimo Aggiornamento | 2022-03-11 |
| Data di Pubblicazione | 2020-05-09 |
| Valutazione | 3.73/5 Totale 15 Valutazioni |
| Sviluppatore | edoreld |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/edoreld/mark-as-read |
| URL della Pagina di Aiuto | https://github.com/edoreld/mark-as-read/issues |
| Lingue Supportate | 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"
} | |