Mark As Read
Mark a page as read by clicking on the extension icon.
Vad är Mark As Read?
Mark As Read är en Chrome-tillägg utvecklad av edoreld, och dess huvudfunktion är "Mark a page as read by clicking on the extension icon.".
Tilläggsskärmbilder
Ladda ner Mark As Read-förlängningens CRX-fil
Ladda ner Mark As Read-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Extra Features:
- Backup & Restore links
To activate these extra features, right click on the extension icon and click on Options. Grundläggande Information om Tillägg
| Namn | |
| ID | hiflhkmicfagennabmnfcnnlpkmidfjj |
| Officiell webbadress | https://chromewebstore.google.com/detail/mark-as-read/hiflhkmicfagennabmnfcnnlpkmidfjj |
| Beskrivning | Mark a page as read by clicking on the extension icon. |
| Filstorlek | 11.28 KB |
| Antal Installationer | 550 |
| Aktuell Version | 1.0.0 |
| Senast Uppdaterad | 2022-03-11 |
| Publiceringsdatum | 2020-05-09 |
| Betyg | 3.73/5 Totalt 15 Betyg |
| Utvecklare | edoreld |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/edoreld/mark-as-read |
| Hjälpsida URL | https://github.com/edoreld/mark-as-read/issues |
| Stödda Språk | 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"
} | |