New Tab Custom Quote
New motivational quote in every new tab. Or set your own quote
Was ist New Tab Custom Quote?
New Tab Custom Quote ist eine Chrome-Erweiterung, die von Cheenu Khurana entwickelt wurde, und ihr Hauptmerkmal ist "New motivational quote in every new tab. Or set your own quote".
Erweiterungsscreenshots
New Tab Custom Quote-Erweiterungs-CRX-Datei herunterladen
Laden Sie New Tab Custom Quote-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
On opening a new tab, a random motivational quote will be shown. You can customise to show your own quote or ToDo task. - Simple, Minimalistic design - Completely free, without ads - Works offline - No account required Want to suggest a quote or have feedback? Simply tweet @cheenukhurana
Grundlegende Informationen zur Erweiterung
Name | New Tab Custom Quote |
ID | jlnllcngghpmhmcpfibhhccefpefmknb |
Offizielle URL | https://chromewebstore.google.com/detail/new-tab-custom-quote/jlnllcngghpmhmcpfibhhccefpefmknb |
Beschreibung | New motivational quote in every new tab. Or set your own quote |
Dateigröße | 18.86 KB |
Installationsanzahl | 54 |
Aktuelle Version | 1.0 |
Letztes Update | 2020-07-04 |
Veröffentlichungsdatum | 2020-07-03 |
Bewertung | 4.50/5 Insgesamt 2 Bewertungen |
Entwickler | Cheenu Khurana |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "New Tab Custom Quote", "description": "New motivational quote in every new tab. Or set your own quote", "version": "1.0", "manifest_version": 2, "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/quote_16.png", "32": "images\/quote_32.png", "48": "images\/quote_48.png", "128": "images\/quote_128.png" } }, "icons": { "16": "images\/quote_16.png", "32": "images\/quote_32.png", "48": "images\/quote_48.png", "128": "images\/quote_128.png" }, "chrome_url_overrides": { "newtab": "quote.html" }, "permissions": [ "storage" ] } |