Hello Tab
Hello Tab replaces your new tab page with random thoughts from others
Apa itu Hello Tab?
Hello Tab adalah ekstensi Chrome yang dikembangkan oleh https://hellotab.com, dan fitur utamanya adalah "Hello Tab replaces your new tab page with random thoughts from others".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Hello Tab
Unduh file ekstensi Hello Tab dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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!
Informasi Dasar Ekstensi
Nama | Hello Tab |
ID | nimdmcfjenibfldkceoegchnicmfagfb |
URL Resmi | https://chromewebstore.google.com/detail/hello-tab/nimdmcfjenibfldkceoegchnicmfagfb |
Deskripsi | Hello Tab replaces your new tab page with random thoughts from others |
Ukuran File | 124 KB |
Jumlah Instalasi | 434 |
Versi Saat Ini | 1.3.6 |
Terakhir Diperbarui | 2015-09-27 |
Tanggal Publikasi | 2015-09-27 |
Penilaian | 4.60/5 Total 20 Penilaian |
Pengembang | https://hellotab.com |
Tipe Pembayaran | free |
Situs Ekstensi | https://hellotab.com |
URL Halaman Bantuan | https://hellotab.com#faq |
Bahasa yang Didukung | 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" ] } |