Hello Tab
Hello Tab replaces your new tab page with random thoughts from others
What is Hello Tab?
Hello Tab is a Chrome extension developed by https://hellotab.com, and its main feature is "Hello Tab replaces your new tab page with random thoughts from others".
Extension Screenshots
Download Hello Tab Extension CRX File
Download Hello Tab extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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!
Extension Basic Information
Name | Hello Tab |
ID | nimdmcfjenibfldkceoegchnicmfagfb |
Official URL | https://chromewebstore.google.com/detail/hello-tab/nimdmcfjenibfldkceoegchnicmfagfb |
Description | Hello Tab replaces your new tab page with random thoughts from others |
File Size | 124 KB |
Installation Count | 434 |
Current Version | 1.3.6 |
Last Updated | 2015-09-27 |
Publish Date | 2015-09-27 |
Rating | 4.60/5 Total 20 Ratings |
Developer | https://hellotab.com |
Payment Type | free |
Extension Website | https://hellotab.com |
Help Page URL | https://hellotab.com#faq |
Supported Languages | 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" ] } |