Right Click Opens Link New Tab

Same as 'Right Click Opens Link New Tab Correct Order', that disapeared from the chrome store but now is back

Wat is Right Click Opens Link New Tab?

Right Click Opens Link New Tab is een Chrome-extensie ontwikkeld door Bill Hedworth, en de belangrijkste functie is "Same as 'Right Click Opens Link New Tab Correct Order', that disapeared from the chrome store but now is back".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Right Click Opens Link New Tab

Download Right Click Opens Link New Tab-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Opens links with a right click in background (default) or foreground maintaining correct order

All perfectly legit and clean source code just upgraded for manifest v3 available here https://github.com/Bigsy/rightclicklinkopentab                    

Basisinformatie over de Extensie

Naam Right Click Opens Link New Tab Right Click Opens Link New Tab
ID nfcebdpicmeliagdpkofijnaggkghocc
Officiële URL https://chromewebstore.google.com/detail/right-click-opens-link-ne/nfcebdpicmeliagdpkofijnaggkghocc
Beschrijving Same as 'Right Click Opens Link New Tab Correct Order', that disapeared from the chrome store but now is back
Bestandsgrootte 152 KB
Aantal Installaties 450
Huidige Versie 0.0.2
Laatst Bijgewerkt 2024-02-02
Publicatiedatum 2024-01-06
Beoordeling 5.00/5 Totaal 5 Beoordelingen
Ontwikkelaar Bill Hedworth
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Right Click Opens Link New Tab",
    "version": "0.0.2",
    "description": "Same as 'Right Click Opens Link New Tab Correct Order', that disapeared from the chrome store but now is back",
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "author": "Bill Hedworth",
    "minimum_chrome_version": "88",
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content_script.js"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "config\/settings.html",
        "default_icon": {
            "16": "icons\/16.png",
            "32": "icons\/32.png",
            "48": "icons\/48.png",
            "128": "icons\/128.png"
        }
    },
    "options_ui": {
        "page": "config\/settings.html",
        "open_in_tab": true
    },
    "short_name": "Tab Opener"
}