Open link in new tab
This extension forces links in a page to open in new tab.
What is Open link in new tab?
Open link in new tab is a Chrome extension developed by Naren, and its main feature is "This extension forces links in a page to open in new tab.".
Extension Screenshots
Download Open link in new tab Extension CRX File
Download Open link in new tab extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | |
ID | lahhghmllilhdphkncabilobmcokgfag |
Official URL | https://chrome.google.com/webstore/detail/open-link-in-new-tab/lahhghmllilhdphkncabilobmcokgfag |
Description | This extension forces links in a page to open in new tab. |
File Size | 86.17 KB |
Installation Count | 4,000 |
Current Version | 1.0.7 |
Last Updated | 2015-03-05 |
Publish Date | 2015-03-05 |
Rating | 3.24/5 Total 42 Ratings |
Developer | Naren |
Payment Type | free |
Extension Website | http://twitter.com/narens |
Supported Languages | 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" ] } ] } |