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
Vad är Right Click Opens Link New Tab?
Right Click Opens Link New Tab är en Chrome-tillägg utvecklad av Bill Hedworth, och dess huvudfunktion är "Same as 'Right Click Opens Link New Tab Correct Order', that disapeared from the chrome store but now is back".
Tilläggsskärmbilder
Ladda ner Right Click Opens Link New Tab-förlängningens CRX-fil
Ladda ner Right Click Opens Link New Tab-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | Right Click Opens Link New Tab |
ID | nfcebdpicmeliagdpkofijnaggkghocc |
Officiell webbadress | https://chromewebstore.google.com/detail/right-click-opens-link-ne/nfcebdpicmeliagdpkofijnaggkghocc |
Beskrivning | Same as 'Right Click Opens Link New Tab Correct Order', that disapeared from the chrome store but now is back |
Filstorlek | 152 KB |
Antal Installationer | 450 |
Aktuell Version | 0.0.2 |
Senast Uppdaterad | 2024-02-02 |
Publiceringsdatum | 2024-01-06 |
Betyg | 5.00/5 Totalt 5 Betyg |
Utvecklare | Bill Hedworth |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" } |