Open link in new tab
This extension forces links in a page to open in new tab.
Wat is Open link in new tab?
Open link in new tab is een Chrome-extensie ontwikkeld door Naren, en de belangrijkste functie is "This extension forces links in a page to open in new tab.".
Extensie Screenshots
Download het CRX-bestand van de extensie Open link in new tab
Download Open link in new tab-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | |
ID | lahhghmllilhdphkncabilobmcokgfag |
Officiële URL | https://chrome.google.com/webstore/detail/open-link-in-new-tab/lahhghmllilhdphkncabilobmcokgfag |
Beschrijving | This extension forces links in a page to open in new tab. |
Bestandsgrootte | 86.17 KB |
Aantal Installaties | 4,000 |
Huidige Versie | 1.0.7 |
Laatst Bijgewerkt | 2015-03-05 |
Publicatiedatum | 2015-03-05 |
Beoordeling | 3.24/5 Totaal 42 Beoordelingen |
Ontwikkelaar | Naren |
Betalingswijze | free |
Extensiewebsite | http://twitter.com/narens |
Ondersteunde Talen | 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" ] } ] } |