Link Protector
Adds the noopener attribute to links (third-party only) and prevents websites from accessing the opener window.
Link Protectorคืออะไร?
Link Protector เป็นส่วนขยายของ Chrome ที่พัฒนาโดย leocompson และคุณลักษณะหลักของมันคือ "Adds the noopener attribute to links (third-party only) and prevents websites from accessing the opener window."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Link Protector
ดาวน์โหลดไฟล์ส่วนขยาย Link Protector ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" } } |