Open link in new tab
This extension forces links in a page to open in new tab.
Co to jest Open link in new tab?
Open link in new tab to rozszerzenie Chrome opracowane przez Naren, a jego główną funkcją jest „This extension forces links in a page to open in new tab.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Open link in new tab
Pobierz pliki rozszerzeń Open link in new tab w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | lahhghmllilhdphkncabilobmcokgfag |
Oficjalny URL | https://chrome.google.com/webstore/detail/open-link-in-new-tab/lahhghmllilhdphkncabilobmcokgfag |
Opis | This extension forces links in a page to open in new tab. |
Rozmiar pliku | 86.17 KB |
Liczba instalacji | 4,000 |
Aktualna Wersja | 1.0.7 |
Ostatnia Aktualizacja | 2015-03-05 |
Data Publikacji | 2015-03-05 |
Ocena | 3.24/5 Łącznie 42 Oceny |
Deweloper | Naren |
Typ Płatności | free |
Strona Rozszerzenia | http://twitter.com/narens |
Obsługiwane Języki | 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" ] } ] } |