Link Control
Manage whether links are opened in the same tab or a new tab
Co to jest Link Control?
Link Control to rozszerzenie Chrome opracowane przez yikeware, a jego główną funkcją jest „Manage whether links are opened in the same tab or a new tab”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Link Control
Pobierz pliki rozszerzeń Link Control w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | olcpmlhnomiabbndnfplobojnhjljapm |
| Oficjalny URL | https://chromewebstore.google.com/detail/link-control/olcpmlhnomiabbndnfplobojnhjljapm |
| Opis | Manage whether links are opened in the same tab or a new tab |
| Rozmiar pliku | 12.23 KB |
| Liczba instalacji | 1,015 |
| Aktualna Wersja | 1.1 |
| Ostatnia Aktualizacja | 2023-12-21 |
| Data Publikacji | 2020-08-04 |
| Ocena | 4.21/5 Łącznie 14 Oceny |
| Deweloper | yikeware |
| [email protected] | |
| Typ Płatności | free |
| Obsługiwane Języki | 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"
}
} | |