GMail Unread
Shows an 'Unread' button to filter emails by 'Unread' status.
Wat is GMail Unread?
GMail Unread is een Chrome-extensie ontwikkeld door Dillon Hafer, en de belangrijkste functie is "Shows an 'Unread' button to filter emails by 'Unread' status.".
Extensie Screenshots
Download het CRX-bestand van de extensie GMail Unread
Download GMail Unread-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
Basisinformatie over de Extensie
Naam | GMail Unread |
ID | fnjpldipmbkkjobnhfhdngjljhlabieb |
Officiële URL | https://chromewebstore.google.com/detail/gmail-unread/fnjpldipmbkkjobnhfhdngjljhlabieb |
Beschrijving | Shows an 'Unread' button to filter emails by 'Unread' status. |
Bestandsgrootte | 52.41 KB |
Aantal Installaties | 80 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2015-06-08 |
Publicatiedatum | 2015-06-08 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | Dillon Hafer |
Betalingswijze | free |
Extensiewebsite | https://github.com/dillonhafer/gmail-unread |
Ondersteunde Talen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GMail Unread", "version": "1.0", "description": "Shows an 'Unread' button to filter emails by 'Unread' status.", "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_icon": "icon-19.png", "default_title": "Show unread", "default_popup": "popup.html" }, "permissions": [ "declarativeContent" ], "content_scripts": [ { "js": [ "unread.js" ], "matches": [ "https:\/\/mail.google.com\/*" ], "run_at": "document_idle", "all_frames": false } ], "icons": { "48": "icon-48.png", "128": "icon-128.png" }, "manifest_version": 2 } |