_blank
Put a double purple border around links that will open in a new tab (i.e. have target="_blank")
_blankคืออะไร?
_blank เป็นส่วนขยายของ Chrome ที่พัฒนาโดย zellous.design และคุณลักษณะหลักของมันคือ "Put a double purple border around links that will open in a new tab (i.e. have target="_blank")"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย _blank
ดาวน์โหลดไฟล์ส่วนขยาย _blank ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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) ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| 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"
]
} | |