Link in Current Tab

Force all links to be opened in current tab instead of the new one

Link in Current Tab란 무엇입니까?

Link in Current Tab은(는) SAGAN에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Force all links to be opened in current tab instead of the new one"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Link in Current Tab 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension forces all links to be opened in the current tab. It does it in a way that should work in ALL websites, even if the sites that load contents dynamically via AJAX.

Note You can still open a link in the new tab at any time, by clicking a link when holding the "Ctrl" key, or using the middle mouse button to open a link.

无视页面里 a 链接的 target="_blank" 属性, 强制所有链接在当前 tab 页打开.                    

확장 프로그램 기본 정보

이름 Link in Current Tab Link in Current Tab
ID cbkcdebbfbegnmbephalggnchfebihbl
공식 URL https://chromewebstore.google.com/detail/link-in-current-tab/cbkcdebbfbegnmbephalggnchfebihbl
설명 Force all links to be opened in current tab instead of the new one
파일 크기 3.46 KB
설치 횟수 194
현재 버전 1.0.11
최근 업데이트 2023-12-21
출시 날짜 2018-06-18
평점 5.00/5 총 3 개의 평점
개발자 SAGAN
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/sagan/chrome-extension-link-in-current-tab
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Link in Current Tab",
    "description": "Force all links to be opened in current tab instead of the new one",
    "version": "1.0.11",
    "author": "Jacques De SAGAN",
    "manifest_version": 2,
    "permissions": [],
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ]
}