Hello Tab
Hello Tab replaces your new tab page with random thoughts from others
Hello Tabとは何ですか?
Hello Tabはhttps://hellotab.comによって開発されたChromeの拡張機能で、その主な機能は「Hello Tab replaces your new tab page with random thoughts from others」です。
拡張機能のスクリーンショット
Hello Tab拡張機能のCRXファイルをダウンロード
Hello Tab拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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! 拡張機能の基本情報
| 名前 | |
| ID | nimdmcfjenibfldkceoegchnicmfagfb |
| 公式URL | https://chromewebstore.google.com/detail/hello-tab/nimdmcfjenibfldkceoegchnicmfagfb |
| 説明 | Hello Tab replaces your new tab page with random thoughts from others |
| ファイルサイズ | 124 KB |
| インストール数 | 434 |
| 現在のバージョン | 1.3.6 |
| 最終更新日 | 2015-09-27 |
| 公開日 | 2015-09-27 |
| 評価 | 4.60/5 合計 20 レビュー |
| 開発者 | https://hellotab.com |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://hellotab.com |
| ヘルプページのURL | https://hellotab.com#faq |
| 対応言語 | 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"
]
} | |