Hello Tab
Hello Tab replaces your new tab page with random thoughts from others
Was ist Hello Tab?
Hello Tab ist eine Chrome-Erweiterung, die von https://hellotab.com entwickelt wurde, und ihr Hauptmerkmal ist "Hello Tab replaces your new tab page with random thoughts from others".
Erweiterungsscreenshots
Hello Tab-Erweiterungs-CRX-Datei herunterladen
Laden Sie Hello Tab-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
Use this chrome extension to anonymously share a thought or simply get inspired by others thoughts every time you open a new tab (cmd+T). Share whatever is on your mind, as long as it's less than 200 characters. Want to use more than one new-tab-extension at once? Check out "Cycle Tab" (http://cycletab.rocks) on the chrome store!
Grundlegende Informationen zur Erweiterung
Name | Hello Tab |
ID | nimdmcfjenibfldkceoegchnicmfagfb |
Offizielle URL | https://chromewebstore.google.com/detail/hello-tab/nimdmcfjenibfldkceoegchnicmfagfb |
Beschreibung | Hello Tab replaces your new tab page with random thoughts from others |
Dateigröße | 124 KB |
Installationsanzahl | 434 |
Aktuelle Version | 1.3.6 |
Letztes Update | 2015-09-27 |
Veröffentlichungsdatum | 2015-09-27 |
Bewertung | 4.60/5 Insgesamt 20 Bewertungen |
Entwickler | https://hellotab.com |
Zahlungsart | free |
Erweiterungswebsite | https://hellotab.com |
Hilfeseite URL | https://hellotab.com#faq |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Hello Tab", "description": "Hello Tab replaces your new tab page with random thoughts from others", "version": "1.3.6", "icons": { "16": "images\/icon16.png", "48": "images\/icon128.png", "128": "images\/icon128.png" }, "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/hellotab.com\/*" ], "js": [ "js\/content_script.js" ] } ], "web_accessible_resources": [ "newtab.html" ], "chrome_url_overrides": { "newtab": "newtab.html" }, "permissions": [ "https:\/\/hellotab.com\/", "storage" ] } |