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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension forces links in a page to open in new tab."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Open link in new tab एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
आधिकारिक URL | 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" ] } ] } |