Lone Tab
A new, unique session for every tab opened.
Lone Tabとは何ですか?
Lone TabはIan Mckayによって開発されたChromeの拡張機能で、その主な機能は「A new, unique session for every tab opened.」です。
拡張機能のスクリーンショット
Lone Tab拡張機能のCRXファイルをダウンロード
Lone Tab拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
With this extension enabled, each tab will have a unique session. This is particularly useful for software testers or those with a large amount of accounts for a specific site.
To enable, click the icon and change the slider to the ON position. Any tabs created will now have it's own unique session. 拡張機能の基本情報
| 名前 | |
| ID | dlgodcdpmjmeegcakjjldfobmooajhhe |
| 公式URL | https://chromewebstore.google.com/detail/lone-tab/dlgodcdpmjmeegcakjjldfobmooajhhe |
| 説明 | A new, unique session for every tab opened. |
| ファイルサイズ | 20.03 KB |
| インストール数 | 541 |
| 現在のバージョン | 1.0.1 |
| 最終更新日 | 2021-07-30 |
| 公開日 | 2017-01-21 |
| 評価 | 3.79/5 合計 14 レビュー |
| 開発者 | Ian Mckay |
| Eメール | [email protected] |
| 支払い方法 | free |
| プライバシーポリシーページのURL | http://files.ian.mn/privacy |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Lone Tab",
"short_name": "Lone Tab",
"version": "1.0.1",
"manifest_version": 2,
"author": "Ian Mckay",
"description": "A new, unique session for every tab opened.",
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"icons": {
"16": "icon-16.png",
"32": "icon-32.png",
"128": "icon-128.png"
},
"background": {
"scripts": [
"common.js",
"main.js"
]
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"content.js"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
"inject.js",
"common.js"
],
"browser_action": {
"default_popup": "popup.html"
},
"permissions": [
"webRequest",
"webRequestBlocking",
"storage",
"*:\/\/*\/*"
]
} | |