Open link in new tab
This extension forces links in a page to open in new tab.
Apa itu Open link in new tab?
Open link in new tab adalah ekstensi Chrome yang dikembangkan oleh Naren, dan fitur utamanya adalah "This extension forces links in a page to open in new tab.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Open link in new tab
Unduh file ekstensi Open link in new tab dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | |
ID | lahhghmllilhdphkncabilobmcokgfag |
URL Resmi | https://chrome.google.com/webstore/detail/open-link-in-new-tab/lahhghmllilhdphkncabilobmcokgfag |
Deskripsi | This extension forces links in a page to open in new tab. |
Ukuran File | 86.17 KB |
Jumlah Instalasi | 4,000 |
Versi Saat Ini | 1.0.7 |
Terakhir Diperbarui | 2015-03-05 |
Tanggal Publikasi | 2015-03-05 |
Penilaian | 3.24/5 Total 42 Penilaian |
Pengembang | Naren |
Tipe Pembayaran | free |
Situs Ekstensi | http://twitter.com/narens |
Bahasa yang Didukung | 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" ] } ] } |