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
O que é Right Click Opens Link New Tab?
Right Click Opens Link New Tab é uma extensão do Chrome desenvolvida por Bill Hedworth, e sua principal característica é "Same as 'Right Click Opens Link New Tab Correct Order', that disapeared from the chrome store but now is back".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Right Click Opens Link New Tab
Baixe arquivos de extensão Right Click Opens Link New Tab no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Right Click Opens Link New Tab |
ID | nfcebdpicmeliagdpkofijnaggkghocc |
URL Oficial | https://chromewebstore.google.com/detail/right-click-opens-link-ne/nfcebdpicmeliagdpkofijnaggkghocc |
Descrição | Same as 'Right Click Opens Link New Tab Correct Order', that disapeared from the chrome store but now is back |
Tamanho do Arquivo | 152 KB |
Contagem de Instalações | 450 |
Versão Atual | 0.0.2 |
Última Atualização | 2024-02-02 |
Data de Publicação | 2024-01-06 |
Classificação | 5.00/5 Total de 5 Avaliações |
Desenvolvedor | Bill Hedworth |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } |