Collusion Image Alt Text Viewer
Replace images with their alt attribute text for Debugging or SEO
Vad är Collusion Image Alt Text Viewer?
Collusion Image Alt Text Viewer är en Chrome-tillägg utvecklad av https://collusionapp.com, och dess huvudfunktion är "Replace images with their alt attribute text for Debugging or SEO".
Tilläggsskärmbilder
Ladda ner Collusion Image Alt Text Viewer-förlängningens CRX-fil
Ladda ner Collusion Image Alt Text Viewer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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)
Grundläggande Information om Tillägg
Namn | Collusion Image Alt Text Viewer |
ID | klhaeinjhbihcifafpnanfiobkhfeomk |
Officiell webbadress | https://chromewebstore.google.com/detail/collusion-image-alt-text/klhaeinjhbihcifafpnanfiobkhfeomk |
Beskrivning | Replace images with their alt attribute text for Debugging or SEO |
Filstorlek | 69.27 KB |
Antal Installationer | 852 |
Aktuell Version | 1.0.1 |
Senast Uppdaterad | 2016-10-31 |
Publiceringsdatum | 2016-10-31 |
Betyg | 3.40/5 Totalt 5 Betyg |
Utvecklare | https://collusionapp.com |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://collusionapp.com |
URL till Sekretesspolicy Sidan | https://collusionapp.com/legal |
Stödda Språk | 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 } } |