Open link in new tab

This extension forces links in a page to open in new tab.

Open link in new tab란 무엇입니까?

Open link in new tab은(는) Naren에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension forces links in a page to open in new tab."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        This extension will help you to force links in pages to be open in new tab. You can configure the urls in the options..

Change log:

Version 1.0.7:

Fixed a bug that prevented users from saving the options properly. Thanks to @joelw135                    

확장 프로그램 기본 정보

이름 Open link in new tab Open link in new tab
ID lahhghmllilhdphkncabilobmcokgfag
공식 URL https://chrome.google.com/webstore/detail/open-link-in-new-tab/lahhghmllilhdphkncabilobmcokgfag
설명 This extension forces links in a page to open in new tab.
파일 크기 86.17 KB
설치 횟수 4,000
현재 버전 1.0.7
최근 업데이트 2015-03-05
출시 날짜 2015-03-05
평점 3.24/5 총 42 개의 평점
개발자 Naren
결제 유형 free
확장 프로그램 웹 사이트 http://twitter.com/narens
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Open link in new tab",
    "version": "1.0.7",
    "manifest_version": 2,
    "description": "This extension forces links in a page to open in new tab.",
    "author": "Narendran",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "homepage_url": "http:\/\/twitter.com\/narens",
    "permissions": [
        "tabs",
        "storage"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "options_page": "options\/index.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/jquery.min.js",
                "js\/inject.js"
            ]
        }
    ]
}