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은(는) marek-szczepankiewicz-1122에 의해 개발된 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."입니다.
확장 프로그램 스크린샷
Open link in same tab, pop-up as tab 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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. If you hate when you click the link and Chrome opens it in a new or a new background tab, or even in a new window, then this extension is for you. It forces Chrome to open links in the same tab by default instead of new or background tab, and new tabs instead of pop-up windows. Version 2.6: - Fixed some cases where popups could not open same tab due to extension upgrade to manifest v3 Version 2.5: - Fix some bug - Fix some page can't open popup same tab Version 2.4: - Add new feature: - View all link open popup. - Manage all tabs current window. - Share link of tab on Twitter, LinkedIn and Facebook.
확장 프로그램 기본 정보
이름 | |
ID | jmphljmgnagblkombahigniilhnbadca |
공식 URL | https://chromewebstore.google.com/detail/open-link-in-same-tab-pop/jmphljmgnagblkombahigniilhnbadca |
설명 | 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. |
파일 크기 | 78.41 KB |
설치 횟수 | 102,525 |
현재 버전 | 2.8 |
최근 업데이트 | 2023-08-04 |
출시 날짜 | 2017-11-02 |
평점 | 4.41/5 총 567 개의 평점 |
개발자 | marek-szczepankiewicz-1122 |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://sites.google.com/view/extensions-privacy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Open link in same tab, pop-up as tab", "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": "2.8", "icons": { "16": ".\/assets\/logo.png", "48": ".\/assets\/logo.png", "128": ".\/assets\/logo.png" }, "action": { "default_icon": ".\/assets\/logo.png", "default_popup": "popup.html" }, "background": { "service_worker": "js\/background.js" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/vendor.js", "js\/content_script.js" ] } ], "permissions": [ "storage", "declarativeNetRequest", "tabs" ], "host_permissions": [ "*:\/\/*.facebook.com\/*", "*:\/\/twitter.com\/*", "*:\/\/*.linkedin.com\/*" ], "web_accessible_resources": [] } |