Open in new tab

Open links in new tab for a list of specified domains. Useful for sites such as hackernews

Open in new tab란 무엇입니까?

Open in new tab은(는) Ramkumar K R에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Open links in new tab for a list of specified domains. Useful for sites such as hackernews"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Open in new tab 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Have websites which you always open links in new tab?
With this extension, add the domain and all links in the domain will open in a new tab.

Useful for websites such as hackernews where you would ideally like to open links in new tab.

To add a website to always open in a new tab, just visit the website and click on the extension icon.                    

확장 프로그램 기본 정보

이름 Open in new tab Open in new tab
ID cplillmhmcegjlhcbedmgmalbgjpmlkh
공식 URL https://chromewebstore.google.com/detail/open-in-new-tab/cplillmhmcegjlhcbedmgmalbgjpmlkh
설명 Open links in new tab for a list of specified domains. Useful for sites such as hackernews
파일 크기 101 KB
설치 횟수 8,400
현재 버전 0.0.15
최근 업데이트 2020-05-21
출시 날짜 2020-05-21
평점 3.56/5 총 54 개의 평점
개발자 Ramkumar K R
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Open in new tab",
    "version": "0.0.15",
    "author": "Ramkumar K R",
    "description": "Open links in new tab for a list of specified domains. Useful for sites such as hackernews",
    "permissions": [
        "storage",
        ""
    ],
    "browser_action": {
        "browser_style": false,
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "tabify.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "options_ui": {
        "page": "options\/options.html"
    },
    "icons": {
        "52": "icon.png"
    }
}