Hello Tab
Hello Tab replaces your new tab page with random thoughts from others
Vad är Hello Tab?
Hello Tab är en Chrome-tillägg utvecklad av https://hellotab.com, och dess huvudfunktion är "Hello Tab replaces your new tab page with random thoughts from others".
Tilläggsskärmbilder
Ladda ner Hello Tab-förlängningens CRX-fil
Ladda ner Hello Tab-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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!
Grundläggande Information om Tillägg
Namn | Hello Tab |
ID | nimdmcfjenibfldkceoegchnicmfagfb |
Officiell webbadress | https://chromewebstore.google.com/detail/hello-tab/nimdmcfjenibfldkceoegchnicmfagfb |
Beskrivning | Hello Tab replaces your new tab page with random thoughts from others |
Filstorlek | 124 KB |
Antal Installationer | 434 |
Aktuell Version | 1.3.6 |
Senast Uppdaterad | 2015-09-27 |
Publiceringsdatum | 2015-09-27 |
Betyg | 4.60/5 Totalt 20 Betyg |
Utvecklare | https://hellotab.com |
Betalningssätt | free |
Tilläggswebbplats | https://hellotab.com |
Hjälpsida URL | https://hellotab.com#faq |
Stödda Språk | 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" ] } |