GMail Unread
Shows an 'Unread' button to filter emails by 'Unread' status.
Co to jest GMail Unread?
GMail Unread to rozszerzenie Chrome opracowane przez Dillon Hafer, a jego główną funkcją jest „Shows an 'Unread' button to filter emails by 'Unread' status.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia GMail Unread
Pobierz pliki rozszerzeń GMail Unread w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Podstawowe informacje o rozszerzeniu
Nazwa | GMail Unread |
ID | fnjpldipmbkkjobnhfhdngjljhlabieb |
Oficjalny URL | https://chromewebstore.google.com/detail/gmail-unread/fnjpldipmbkkjobnhfhdngjljhlabieb |
Opis | Shows an 'Unread' button to filter emails by 'Unread' status. |
Rozmiar pliku | 52.41 KB |
Liczba instalacji | 80 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2015-06-08 |
Data Publikacji | 2015-06-08 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | Dillon Hafer |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/dillonhafer/gmail-unread |
Obsługiwane Języki | 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 } |