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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Bill Hedworth และคุณลักษณะหลักของมันคือ "Same as 'Right Click Opens Link New Tab Correct Order', that disapeared from the chrome store but now is back"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Right Click Opens Link New Tab
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
URL อย่างเป็นทางการ | 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" } |