Collusion Image Alt Text Viewer
Replace images with their alt attribute text for Debugging or SEO
Collusion Image Alt Text Viewerคืออะไร?
Collusion Image Alt Text Viewer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://collusionapp.com และคุณลักษณะหลักของมันคือ "Replace images with their alt attribute text for Debugging or SEO"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Collusion Image Alt Text Viewer
ดาวน์โหลดไฟล์ส่วนขยาย Collusion Image Alt Text Viewer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Simulates 'Text Only' or rather, not loading images to reveal their alt text attribute to help verify they are set and what they look like for accessibility or SEO. Works for any website. Includes options for high contrast colors. Brought to you by Collusion (https://collusionapp.com)
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Collusion Image Alt Text Viewer |
ID | klhaeinjhbihcifafpnanfiobkhfeomk |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/collusion-image-alt-text/klhaeinjhbihcifafpnanfiobkhfeomk |
คำอธิบาย | Replace images with their alt attribute text for Debugging or SEO |
ขนาดไฟล์ | 69.27 KB |
จำนวนการติดตั้ง | 852 |
เวอร์ชันปัจจุบัน | 1.0.1 |
อัปเดตครั้งล่าสุด | 2016-10-31 |
วันที่เผยแพร่ | 2016-10-31 |
คะแนน | 3.40/5 รวมทั้งหมด 5 คะแนน |
ผู้พัฒนา | https://collusionapp.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://collusionapp.com |
URL หน้านโยบายความเป็นส่วนตัว | https://collusionapp.com/legal |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Collusion Image Alt Text Viewer", "short_name": "AltTextView", "description": "Replace images with their alt attribute text for Debugging or SEO", "version": "1.0.1", "manifest_version": 2, "icons": { "128": "logo_icon_128.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content-script.js", "jquery-3.1.1.min.js" ], "css": [ "content-style.css" ] } ], "permissions": [ "activeTab", "storage", "http:\/\/*\/*", "https:\/\/*\/*" ], "browser_action": { "default_icon": "logo_icon_128_green.png", "deafult_title": "Collusion Image Alt Text Viewer", "default_popup": "popup.html" }, "options_ui": { "page": "options.html", "chrome_style": true } } |