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
什麼是Right Click Opens Link New Tab?
Right Click Opens Link New Tab是由Bill Hedworth開發的Chrome擴展程式,該擴展的主要功能是“Same as 'Right Click Opens Link New Tab Correct Order', that disapeared from the chrome store but now is back”。
擴展截圖
下載Right Click Opens Link New Tab擴展crx文件
下載Right Click Opens Link New Tab擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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
擴展基本資訊
名稱 | Right Click Opens Link New Tab |
ID | nfcebdpicmeliagdpkofijnaggkghocc |
官方網址 | https://chromewebstore.google.com/detail/right-click-opens-link-ne/nfcebdpicmeliagdpkofijnaggkghocc |
簡介 | Same as 'Right Click Opens Link New Tab Correct Order', that disapeared from the chrome store but now is back |
檔案大小 | 152 KB |
安裝次數 | 450 |
目前版本 | 0.0.2 |
更新時間 | 2024-02-02 |
上架時間 | 2024-01-06 |
評分 | 5.00/5 共 5 次評分 |
開發者 | Bill Hedworth |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | 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" } |