auto-pin-tab
自動的にタブをロックします
What is auto-pin-tab?
auto-pin-tab is a Chrome extension developed by hardwarehacking, and its main feature is "自動的にタブをロックします".
Extension Screenshots
Download auto-pin-tab Extension CRX File
Download auto-pin-tab extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
When target URL opened, tabs will be pinned automatically 特定のURLを開いた時に、自動的にタブを固定するChrome拡張です。 いつも開きっぱなしにしているサイトを間違って閉じてしまわないよう、自動で気を使ってくれます。 ## Feature * 該当のタブを"固定"します。タブが左端に寄って表示が小さくなります * 固定したタブを閉じようとしたり、別のページに遷移しようとした時にアラートを表示します ## Target デフォルトでは、下記のURLを開いた時に自動的にロックします。 * facebook [https://www.facebook.com/](https://www.facebook.com/) * gmail [https://mail.google.com/mail](https://mail.google.com/mail) * tweetdeck [https://web.tweetdeck.com/](https://web.tweetdeck.com/) * chatwork [https://www.chatwork.com/](https://www.chatwork.com/) 他にもオプションから追加・変更・削除ができます。
Extension Basic Information
Name | |
ID | gnpmpgcbidokemicoijogpnfkkncbkam |
Official URL | https://chrome.google.com/webstore/detail/auto-pin-tab/gnpmpgcbidokemicoijogpnfkkncbkam |
Description | 自動的にタブをロックします |
File Size | 58 KB |
Installation Count | 214 |
Current Version | 0.0.50 |
Last Updated | 2018-06-09 |
Publish Date | 2018-06-09 |
Rating | 1.86/5 Total 7 Ratings |
Developer | hardwarehacking |
Payment Type | free |
Supported Languages | ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "auto-pin-tab", "manifest_version": 2, "version": "0.0.50", "description": "\u81ea\u52d5\u7684\u306b\u30bf\u30d6\u3092\u30ed\u30c3\u30af\u3057\u307e\u3059", "background": { "scripts": [ "scripts\/background.js" ], "persistent": false }, "icons": { "16": "images\/icon_16x16.png", "128": "images\/icon_128x128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "scripts\/content_script.js" ], "run_at": "document_start" } ], "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "tabs", "management" ], "options_page": "options.html" } |