auto-pin-tab

自動的にタブをロックします

auto-pin-tab란 무엇입니까?

auto-pin-tab은(는) hardwarehacking에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "自動的にタブをロックします"입니다.

확장 프로그램 스크린샷

screenshot

auto-pin-tab 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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/)

他にもオプションから追加・変更・削除ができます。                    

확장 프로그램 기본 정보

이름 auto-pin-tab auto-pin-tab
ID gnpmpgcbidokemicoijogpnfkkncbkam
공식 URL https://chrome.google.com/webstore/detail/auto-pin-tab/gnpmpgcbidokemicoijogpnfkkncbkam
설명 自動的にタブをロックします
파일 크기 58 KB
설치 횟수 214
현재 버전 0.0.50
최근 업데이트 2018-06-09
출시 날짜 2018-06-09
평점 1.86/5 총 7 개의 평점
개발자 hardwarehacking
결제 유형 free
지원되는 언어 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"
}