Open Tabs In Foreground
Open Tabs In Foreground
什麼是Open Tabs In Foreground?
Open Tabs In Foreground是由Sebastian Blask開發的Chrome擴展程式,該擴展的主要功能是“Open Tabs In Foreground”。
擴展截圖
下載Open Tabs In Foreground擴展crx文件
下載Open Tabs In Foreground擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Open Tabs In Foreground ======================= Clicking a link using the left mouse button while having Ctrl pressed opens it in a background tab by default. The same when using the middle mouse button. This extension opens these tabs in the foreground instead. Tabs are only opened in the background when having Shift pressed while clicking. You won't need this extension in Firefox as it has a setting for this called `When you open a link in a new tab, switch to it immediately`, but in Chrome there is no way to achieve this otherwise. Feedback -------- You can report bugs or make feature requests on https://github.com/sblask/webextension-open-tabs-in-foreground Patches are welcome.
擴展基本資訊
名稱 | |
ID | bmnanfhdjbcilhippcdfbhfpfoipgjgm |
官方網址 | https://chromewebstore.google.com/detail/open-tabs-in-foreground/bmnanfhdjbcilhippcdfbhfpfoipgjgm |
簡介 | Open Tabs In Foreground |
檔案大小 | 41 KB |
安裝次數 | 576 |
目前版本 | 1.0.5 |
更新時間 | 2023-03-25 |
上架時間 | 2017-10-10 |
評分 | 4.43/5 共 7 次評分 |
開發者 | Sebastian Blask |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/sblask/webextension-open-tabs-in-foreground |
說明頁面URL | https://github.com/sblask/webextension-open-tabs-in-foreground |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "author": "Sebastian Blask", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "all_frames": true, "js": [ "content.js" ], "matches": [ "file:\/\/*\/*", "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start" } ], "description": "Open Tabs In Foreground", "homepage_url": "https:\/\/github.com\/sblask\/webextension-open-tabs-in-foreground", "icons": { "128": "icon-128x128.png", "16": "icon-16x16.png", "32": "icon-32x32.png", "48": "icon-48x48.png", "64": "icon-64x64.png" }, "manifest_version": 2, "name": "Open Tabs In Foreground", "permissions": [ " |