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文件
下載Link Control擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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" } } |