Target Blank

A simple tool to unify link behavior across the web. Control how and when links open in a new tab.

Target Blank क्या है?

Target Blank targetdashblank द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A simple tool to unify link behavior across the web. Control how and when links open in a new tab."।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Target Blank gives you complete control over link behavior. This is useful for anyone who likes their links to always open in a new tab (or vice versa). It's a great tool for research!

For any website (or domain) you choose, click the Target Blank icon and enable link behavior preferences. From there, you can choose whether internal links (that navigate within the same site) or external links (that navigate to other sites) should open in the same tab or a new one. You can also choose where new tab links open and whether they should be the new focus in your window. There are dozens of combinations, so you can find the settings combo that is right for you!

Any time you open the Target Blank options pane, you are looking at options for the current website that you are on. If you change or suspend the options for that site, your settings for other sites will remain unchanged. Target Blank comes with default preferences enabled for google.com, bing.com, baidu.com, duckduckgo.com, wikipedia.org, yahoo.com, and developer.mozilla.org.

**Note** enabling Target Blank on some sites may result in unexpected behavior, usually because those websites have some extra functionality tied to their links. You can always disable or suspend preferences for a site.

Think you can help make Target Blank better? Shoot us an email at [email protected]                    

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

नाम Target Blank Target Blank
ID cjbikdbbpkfmnbpgjkogcdmdbdhpgepj
आधिकारिक URL https://chrome.google.com/webstore/detail/target-blank/cjbikdbbpkfmnbpgjkogcdmdbdhpgepj
विवरण A simple tool to unify link behavior across the web. Control how and when links open in a new tab.
फ़ाइल का आकार 57.02 KB
स्थापना संख्या 276
वर्तमान संस्करण 1.0.1
अंतिम अपडेट 2018-03-15
प्रकाशन तिथि 2018-03-15
रेटिंग 4.55/5 कुल 11 रेटिंग्स
डेवलपर targetdashblank
ईमेल [email protected]
भुगतान के प्रकार free
सहायता पृष्ठ URL https://github.com/kerrykimrusso/target-blank
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Target Blank",
    "description": "A simple tool to unify link behavior across the web. Control how and when links open in a new tab.",
    "icons": {
        "128": "icons\/icon_disabled.png"
    },
    "version": "1.0.1",
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "storage",
        "tabs"
    ],
    "background": {
        "scripts": [
            "constants.js",
            "enums.js",
            "utils.js",
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_title": "A Google Chrome extension for unifying link behavior across the web.",
        "default_popup": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "constants.js",
                "enums.js",
                "utils.js"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "http:\/\/*.google.com\/*",
                "https:\/\/*.google.com\/*",
                "http:\/\/google.com\/*",
                "https:\/\/google.com\/*"
            ],
            "js": [
                "strategies\/google.js"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "http:\/\/*.yahoo.com\/*",
                "https:\/\/*.yahoo.com\/*",
                "http:\/\/yahoo.com\/*",
                "https:\/\/yahoo.com\/*"
            ],
            "js": [
                "strategies\/yahoo.js"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "http:\/\/*.github.com\/*",
                "https:\/\/*.github.com\/*",
                "http:\/\/github.com\/*",
                "https:\/\/github.com\/*"
            ],
            "js": [
                "strategies\/github.js"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "http:\/\/*.facebook.com\/*",
                "https:\/\/*.facebook.com\/*",
                "http:\/\/facebook.com\/*",
                "https:\/\/facebook.com\/*"
            ],
            "js": [
                "strategies\/facebook.js"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "vendors\/mutation-summary.js",
                "contentscript.js"
            ],
            "all_frames": true
        }
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "commands": {
        "toggle-feature-foo": {
            "suggested_key": {
                "default": "Ctrl+Shift+Y",
                "mac": "Command+Shift+Y",
                "windows": "Alt+Shift+P"
            },
            "description": "Toggle feature foo"
        },
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+Y",
                "mac": "Command+Shift+Y",
                "chromeos": "Ctrl+Shift+U",
                "linux": "Ctrl+Shift+J"
            }
        },
        "_execute_page_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+E",
                "windows": "Alt+Shift+P",
                "mac": "Alt+Shift+P"
            }
        }
    }
}