Link Control
Manage whether links are opened in the same tab or a new tab
Τι είναι το Link Control;
Το Link Control είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον yikeware, και η κύρια λειτουργία του είναι "Manage whether links are opened in the same tab or a new tab".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Link Control
Λήψη αρχείων επέκτασης 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. Βασικές Πληροφορίες Επέκτασης
| Όνομα | |
| ID | olcpmlhnomiabbndnfplobojnhjljapm |
| Επίσημο URL | 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"
}
} | |