Open link in same tab, pop-up as tab

Forces Chrome to open new tabs instead of pop-up windows and/or links in the same tab by default instead of new or background tab.

Open link in same tab, pop-up as tab란 무엇입니까?

Open link in same tab, pop-up as tab은(는) werty1st에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Forces Chrome to open new tabs instead of pop-up windows and/or links in the same tab by default instead of new or background tab."입니다.

확장 프로그램 스크린샷

screenshot

Open link in same tab, pop-up as tab 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Converts popups to tabs                    

확장 프로그램 기본 정보

이름 Open link in same tab, pop-up as tab Open link in same tab, pop-up as tab
ID jbhbalpncehdfjnfcmmimecdhalmjjem
공식 URL https://chromewebstore.google.com/detail/open-link-in-same-tab-pop/jbhbalpncehdfjnfcmmimecdhalmjjem
설명 Forces Chrome to open new tabs instead of pop-up windows and/or links in the same tab by default instead of new or background tab.
파일 크기 451 KB
설치 횟수 31,039
현재 버전 3.1.2
최근 업데이트 2020-05-07
출시 날짜 2020-05-07
평점 4.17/5 총 12 개의 평점
개발자 werty1st
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/werty1st/popup2tab/blob/master/readme.md
도움말 페이지 URL https://github.com/werty1st/popup2tab/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Open link in same tab, pop-up as tab",
    "short_name": "popup2tab",
    "description": "Forces Chrome to open new tabs instead of pop-up windows and\/or links in the same tab by default instead of new or background tab.",
    "version": "3.1.2",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "256": "images\/icon256.png",
        "128": "images\/icon128.png",
        "96": "images\/icon96.png",
        "48": "images\/icon48.png"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "web_accessible_resources": [
        "style\/*"
    ],
    "browser_action": {
        "default_icon": "images\/icon48.png",
        "default_popup": "popup.html",
        "default_title": "Open link in same tab, pop-up as tab [Free]"
    },
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    }
}