Link Protector
Adds the noopener attribute to links (third-party only) and prevents websites from accessing the opener window.
Link Protector란 무엇입니까?
Link Protector은(는) leocompson에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds the noopener attribute to links (third-party only) and prevents websites from accessing the opener window."입니다.
확장 프로그램 스크린샷
Link Protector 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Link Protector extension is designed to potentially improve your online security. For all link elements (hyperlinks) within the page, if the link opens in a new tab and does NOT have an opener attribute (rel=noopener), this addon adds this attribute to the link to prevent the new window from accessing the opener window (previous tab). Please note that this addon only works if the links have a third-party href, otherwise it won't change the attributes at all. By adding the noopener attribute, it can potentially improve your online security and privacy, as the third-party website does not have access to the opener window (the tab in which the hyperlink is opened), therefore your online data will not be exposed to other websites. The toolbar button serves as an ON, OFF switch to quickly turn the extension ON or OFF. Badge icon text shows the number of hyperlinks that are being changed. This addon does not have separate options or settings page. If you have a feature request or found a bug to report, please fill the bug report form on the addon's homepage (https://mybrowseraddon.com/link-protector.html).
확장 프로그램 기본 정보
이름 | Link Protector |
ID | jnmfkbpbdljibjdkmdibeeeniekkhcin |
공식 URL | https://chromewebstore.google.com/detail/link-protector/jnmfkbpbdljibjdkmdibeeeniekkhcin |
설명 | Adds the noopener attribute to links (third-party only) and prevents websites from accessing the opener window. |
파일 크기 | 43.99 KB |
설치 횟수 | 287 |
현재 버전 | 0.1.1 |
최근 업데이트 | 2022-06-22 |
출시 날짜 | 2020-11-28 |
개발자 | leocompson |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://mybrowseraddon.com/link-protector.html |
도움말 페이지 URL | https://mybrowseraddon.com/link-protector.html |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.1.1", "manifest_version": 3, "name": "Link Protector", "permissions": [ "storage" ], "short_name": "link-protector", "homepage_url": "https:\/\/mybrowseraddon.com\/link-protector.html", "description": "Adds the noopener attribute to links (third-party only) and prevents websites from accessing the opener window.", "commands": { "_execute_action": [] }, "background": { "service_worker": "background.js" }, "action": { "default_title": "Link Protector", "default_icon": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png" } }, "content_scripts": [ { "all_frames": true, "matches": [ "*:\/\/*\/*" ], "run_at": "document_start", "js": [ "data\/content_script\/inject.js" ] } ], "icons": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png", "128": "data\/icons\/128.png" } } |