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
Qu'est-ce que Right Click Opens Link New Tab ?
Right Click Opens Link New Tab est une extension Chrome développée par Bill Hedworth, et sa fonction principale est "Same as 'Right Click Opens Link New Tab Correct Order', that disapeared from the chrome store but now is back".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Right Click Opens Link New Tab
Téléchargez les fichiers d'extension Right Click Opens Link New Tab au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Right Click Opens Link New Tab |
ID | nfcebdpicmeliagdpkofijnaggkghocc |
URL Officiel | https://chromewebstore.google.com/detail/right-click-opens-link-ne/nfcebdpicmeliagdpkofijnaggkghocc |
Description | Same as 'Right Click Opens Link New Tab Correct Order', that disapeared from the chrome store but now is back |
Taille du Fichier | 152 KB |
Nombre d'Installations | 450 |
Version Actuelle | 0.0.2 |
Dernière Mise à Jour | 2024-02-02 |
Date de Publication | 2024-01-06 |
Évaluation | 5.00/5 Total 5 Évaluations |
Développeur | Bill Hedworth |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" } |