Open link in new tab
This extension forces links in a page to open in new tab.
什麼是Open link in new tab?
Open link in new tab是由Naren開發的Chrome擴展程式,該擴展的主要功能是“This extension forces links in a page to open in new tab.”。
擴展截圖
下載Open link in new tab擴展crx文件
下載Open link in new tab擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This extension will help you to force links in pages to be open in new tab. You can configure the urls in the options.. Change log: Version 1.0.7: Fixed a bug that prevented users from saving the options properly. Thanks to @joelw135
擴展基本資訊
名稱 | |
ID | lahhghmllilhdphkncabilobmcokgfag |
官方網址 | https://chrome.google.com/webstore/detail/open-link-in-new-tab/lahhghmllilhdphkncabilobmcokgfag |
簡介 | This extension forces links in a page to open in new tab. |
檔案大小 | 86.17 KB |
安裝次數 | 4,000 |
目前版本 | 1.0.7 |
更新時間 | 2015-03-05 |
上架時間 | 2015-03-05 |
評分 | 3.24/5 共 42 次評分 |
開發者 | Naren |
付費類型 | free |
擴展官網 | http://twitter.com/narens |
支援的語言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Open link in new tab", "version": "1.0.7", "manifest_version": 2, "description": "This extension forces links in a page to open in new tab.", "author": "Narendran", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "homepage_url": "http:\/\/twitter.com\/narens", "permissions": [ "tabs", "storage" ], "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "options_page": "options\/index.html", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/jquery.min.js", "js\/inject.js" ] } ] } |