Tabloc

Open new tabs when you click links.

Tabloc란 무엇입니까?

Tabloc은(는) asukaze에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Open new tabs when you click links."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Tabloc 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension adds "Lock Tab" icon in the tool bar.
When you click links in the locked tab, current page is preserved and new tab opens.
Does not works in extensions gallery and framed pages.

Tabloc for Firefox: https://addons.mozilla.org/firefox/12536/

Ver.0.5 (2022/07/18)
- updated to manifest_version 3.
- uses Storage API to store preferences instead of LocalStorage.
- simplified the default icons.
- split the "Auto-Lock URL" for "background tabs", "foreground tabs", and "excluded URLs".
- automatically adds URLs to the auto-lock URLs when the tab is locked.
- auto lock URLs are now considered as partial match instead of exact match.
- added emoji to the locked tab title.
- merged foreground icon and background icon to one "enabled" icon.

Ver.0.4 (2015/03/22)
- support custom icons.

Ver.0.3 (2012/10/08)
- updated to manifest_version 2.

Ver.0.1.3 (2010/03/04)
- add "auto-link" feature.

Ver.0.1.2 (2010/02/02)
- update description.

Ver.0.1.1 (2010/01/31)
- support some options.                    

확장 프로그램 기본 정보

이름 Tabloc Tabloc
ID fkgobafgpenbfnfeigkdpdilnpfabbpc
공식 URL https://chromewebstore.google.com/detail/tabloc/fkgobafgpenbfnfeigkdpdilnpfabbpc
설명 Open new tabs when you click links.
파일 크기 11.07 KB
설치 횟수 4,082
현재 버전 0.5
최근 업데이트 2022-07-19
출시 날짜 2015-03-21
평점 3.70/5 총 27 개의 평점
개발자 asukaze
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://www.asukaze.net/soft/ch_tabloc/
지원되는 언어 en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tabloc",
    "version": "0.5",
    "manifest_version": 3,
    "description": "__MSG_description__",
    "default_locale": "en",
    "icons": {
        "16": "tabloc.png",
        "48": "tabloc_48.png"
    },
    "action": {
        "default_icon": "tabloc.png",
        "default_title": "__MSG_action_title__"
    },
    "background": {
        "service_worker": "tabloc_bg.js",
        "type": "module"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "tabloc.js"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "tabs",
        "storage"
    ]
}