Link Control
Manage whether links are opened in the same tab or a new tab
Link Control란 무엇입니까?
Link Control은(는) yikeware에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Manage whether links are opened in the same tab or a new tab"입니다.
확장 프로그램 스크린샷
Link Control 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
A lightweight extension that puts you in control of how links open. The extension lets you: - Always open links in the same tab - Always open links in a new tab - Choose the behaviour for specific websites Useful for stopping the behaviour of sites such as eBay, Etsy, Temu and others that open a new tab every time you click on a link, or it can be used to add that behaviour for other sites.
확장 프로그램 기본 정보
이름 | Link Control |
ID | olcpmlhnomiabbndnfplobojnhjljapm |
공식 URL | https://chromewebstore.google.com/detail/link-control/olcpmlhnomiabbndnfplobojnhjljapm |
설명 | Manage whether links are opened in the same tab or a new tab |
파일 크기 | 12.23 KB |
설치 횟수 | 1,015 |
현재 버전 | 1.1 |
최근 업데이트 | 2023-12-21 |
출시 날짜 | 2020-08-04 |
평점 | 4.21/5 총 14 개의 평점 |
개발자 | yikeware |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Link Control", "description": "Manage whether links are opened in the same tab or a new tab", "version": "1.1", "manifest_version": 2, "permissions": [ "storage", "tabs" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ] } ], "page_action": { "default_popup": "popup.html", "default_icon": "linkcontrol16.png", "show_matches": "*:\/\/*\/*" }, "icons": { "16": "linkcontrol16.png", "48": "linkcontrol48.png", "128": "linkcontrol128.png" } } |