PowerTab
Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs.
PowerTabとは何ですか?
PowerTabはInsaneによって開発されたChromeの拡張機能で、その主な機能は「Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs.」です。
拡張機能のスクリーンショット
PowerTab拡張機能のCRXファイルをダウンロード
PowerTab拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Power tab extends the default chrome tab-support allowing among other things close tabs to the left, duplicate tab and background tabs. 拡張機能の基本情報
| 名前 | |
| ID | ihfgepigeejhaclnhdgmoinblbcalccc |
| 公式URL | https://chromewebstore.google.com/detail/powertab/ihfgepigeejhaclnhdgmoinblbcalccc |
| 説明 | Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs. |
| ファイルサイズ | 20.13 KB |
| インストール数 | 34 |
| 現在のバージョン | 1.0 |
| 最終更新日 | 2013-09-16 |
| 公開日 | 2013-09-16 |
| 評価 | 5.00/5 合計 1 レビュー |
| 開発者 | Insane |
| 支払い方法 | free |
| 対応言語 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "PowerTab",
"description": "Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs.",
"version": "1.0",
"permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"contextMenus",
"clipboardWrite",
"tabs"
],
"icons": {
"16": "icon16x16.png",
"48": "icon48x48.png",
"128": "icon128x128.png"
},
"browser_action": {
"default_icon": "icon16x16.png",
"default_popup": "popup.html"
},
"background": {
"scripts": [
"eventPage.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*"
],
"js": [
"contentScript.js"
],
"run_at": "document_start"
}
]
} | |