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
Cos'è Right Click Opens Link New Tab?
Right Click Opens Link New Tab è un'estensione di Chrome sviluppata da Bill Hedworth, e la sua funzione principale è "Same as 'Right Click Opens Link New Tab Correct Order', that disapeared from the chrome store but now is back".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Right Click Opens Link New Tab
Scarica i file di estensione Right Click Opens Link New Tab in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Right Click Opens Link New Tab |
ID | nfcebdpicmeliagdpkofijnaggkghocc |
URL Ufficiale | https://chromewebstore.google.com/detail/right-click-opens-link-ne/nfcebdpicmeliagdpkofijnaggkghocc |
Descrizione | Same as 'Right Click Opens Link New Tab Correct Order', that disapeared from the chrome store but now is back |
Dimensione del File | 152 KB |
Conteggio Installazioni | 450 |
Versione Corrente | 0.0.2 |
Ultimo Aggiornamento | 2024-02-02 |
Data di Pubblicazione | 2024-01-06 |
Valutazione | 5.00/5 Totale 5 Valutazioni |
Sviluppatore | Bill Hedworth |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" } |