Blank Target

Forces all links on a page to open in a new tab.

ما هو Blank Target؟

Blank Target هو إضافة Chrome تم تطويرها بواسطة revjtanton، والميزة الرئيسية لها هي "Forces all links on a page to open in a new tab.".

تحميل ملف CRX للإضافة Blank Target

قم بتنزيل ملفات الامتداد Blank Target بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Do you get annoyed when links on a page open in the same tab?  Do you ever wish all links open in a new tab?  Well if you answered yes to those questions this extention is for you.  

This extension is very simple.  All it does is append target="_blank" to all links on a page.  That's it.  It's not at all complex, and on some pages the js will overrite this and it won't work.  For the most part it does the job though.  

I've been using this for a while on my own since I prefer all links to open in new tabs.  Now I'm putting it out there for everyone to use.  Enjoy!                    

معلومات أساسية عن التمديد

الاسم Blank Target Blank Target
ID ljcanejgocdkgicjieclckdbmajjfppe
عنوان URL الرسمي https://chrome.google.com/webstore/detail/blank-target/ljcanejgocdkgicjieclckdbmajjfppe
الوصف Forces all links on a page to open in a new tab.
حجم الملف 3.15 KB
عدد التثبيتات 37
النسخة الحالية 1.0
آخر تحديث 2014-11-02
تاريخ النشر 2014-11-02
تقييم 5.00/5 مجموع تقييمات 1
المطور revjtanton
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Blank Target",
    "description": "Forces all links on a page to open in a new tab.",
    "version": "1.0",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "blank.js"
            ]
        }
    ]
}