Verify Me
Add a button to the browser to check rel=me links point back
Verify Meคืออะไร?
Verify Me เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://kevinmarks.com และคุณลักษณะหลักของมันคือ "Add a button to the browser to check rel=me links point back"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Verify Me
ดาวน์โหลดไฟล์ส่วนขยาย Verify Me ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Looks for rel="me" links on the current page, then check if they link back with a rel="me" too. Shows a green √ or red x depending on whether they do or not. ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | nnefkajddpfponfnmaflddipljfdlcjb |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/verify-me/nnefkajddpfponfnmaflddipljfdlcjb |
| คำอธิบาย | Add a button to the browser to check rel=me links point back |
| ขนาดไฟล์ | 24.16 KB |
| จำนวนการติดตั้ง | 557 |
| เวอร์ชันปัจจุบัน | 0.3.1 |
| อัปเดตครั้งล่าสุด | 2018-11-04 |
| วันที่เผยแพร่ | 2018-11-03 |
| คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
| ผู้พัฒนา | https://kevinmarks.com |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| URL หน้านโยบายความเป็นส่วนตัว | https://github.com/indieweb/verify-me |
| ภาษาที่รองรับ | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Verify Me",
"short_name": "Verify Me",
"description": "Add a button to the browser to check rel=me links point back",
"version": "0.3.1",
"background": {
"scripts": [
"background.js"
]
},
"content-scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"run_at": "document_idle",
"css": [
"balloons.css"
],
"js": [
"balloons.js"
]
}
],
"permissions": [
"http:\/\/*\/",
"https:\/\/*\/"
],
"browser_action": {
"default_title": "Check rel-me links on this page.",
"default_icon": {
"19": "icon-32.png",
"38": "icon-32.png"
}
},
"icons": {
"32": "icon-32.png",
"128": "icon.png"
}
} | |