_blank

Put a double purple border around links that will open in a new tab (i.e. have target="_blank")

_blank क्या है?

_blank zellous.design द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Put a double purple border around links that will open in a new tab (i.e. have target="_blank")"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में _blank एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This extension will put a double purple border around all links that will open in a new tab (i.e. links with target="_blank").

There are two main purposes for this extension:
1. If you build or manage websites, this is a great way to check that _blank is or is not being used on various links.
2. Sometimes _blank links are hiding amongst normal links. With the _blank extension you'll have a heads up before clicking a link that will pop open a new tab/window.

Feel free to fork/contribute: https://github.com/bzle/_blank
------------------------

This is designed to be a compliment to igorware.com's NoFollow extension, which puts a red dotted outline around nofollow links. (https://chrome.google.com/webstore/detail/nofollow/dfogidghaigoomjdeacndafapdijmiid)                    

एक्सटेंशन की मूल जानकारी

नाम _blank _blank
ID lbbeapbpffjiknofgfdjbkllbmgnnaah
आधिकारिक URL https://chromewebstore.google.com/detail/blank/lbbeapbpffjiknofgfdjbkllbmgnnaah
विवरण Put a double purple border around links that will open in a new tab (i.e. have target="_blank")
फ़ाइल का आकार 55.06 KB
स्थापना संख्या 145
वर्तमान संस्करण 1.2.1
अंतिम अपडेट 2016-07-15
प्रकाशन तिथि 2016-07-15
रेटिंग 4.50/5 कुल 2 रेटिंग्स
डेवलपर zellous.design
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "_blank",
    "description": "Put a double purple border around links that will open in a new tab (i.e. have target=\"_blank\")",
    "version": "1.2.1",
    "icons": {
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "tabs"
    ]
}