favicon

Favicon not showing in search results even with Googles Guidelines

廉价感情. 提交于 2021-02-18 18:50:58
问题 I followed the guidelines on Favicon at https://support.google.com/webmasters/answer/9290858?hl=en. However it has been some time and mt favicon has not been indexed There are some threads on here but none showed any difinitive resolution. I had my favicon as an .ico but i changed it to a .png recently. I also have it set as 48x48 as per googles guidelines. Any help is apprieciated. Website is http://veganthingsworld.com <link rel="shortcut icon" type="image/icon" href="Images/favicon.png">

Favicon not showing in search results even with Googles Guidelines

孤人 提交于 2021-02-18 18:50:29
问题 I followed the guidelines on Favicon at https://support.google.com/webmasters/answer/9290858?hl=en. However it has been some time and mt favicon has not been indexed There are some threads on here but none showed any difinitive resolution. I had my favicon as an .ico but i changed it to a .png recently. I also have it set as 48x48 as per googles guidelines. Any help is apprieciated. Website is http://veganthingsworld.com <link rel="shortcut icon" type="image/icon" href="Images/favicon.png">

Node Express “favicon.ico” not found error

别说谁变了你拦得住时间么 提交于 2021-02-18 18:15:54
问题 I'm trying to download a photo through a URL passed as a query string using Express, but every time I try to use it, I get Error: Invalid URI "favicon.ico" Is there a way I can get my browser to stop requesting a favicon? For downloading images, I'm using the image-downloader package (NPM page) Code: app.get('/:url', (req, res) => { let url = req.params.url; const options = { url: url, dest: /path' }; download.image(options) .then(({ filename, image }) => { console.log('File saved to ',

Node Express “favicon.ico” not found error

僤鯓⒐⒋嵵緔 提交于 2021-02-18 18:15:17
问题 I'm trying to download a photo through a URL passed as a query string using Express, but every time I try to use it, I get Error: Invalid URI "favicon.ico" Is there a way I can get my browser to stop requesting a favicon? For downloading images, I'm using the image-downloader package (NPM page) Code: app.get('/:url', (req, res) => { let url = req.params.url; const options = { url: url, dest: /path' }; download.image(options) .then(({ filename, image }) => { console.log('File saved to ',

Favicon not showing up in Google Chrome browser

南楼画角 提交于 2021-02-08 15:44:19
问题 For some reason my favicon is not showing up on my chrome tab. From all the articles I have read I am writing the code correctly. It does work in Firefox. I also cleared my cache and tried an incognito window and am still not seeing it. When I go to: localhost:8080/favicon.ico I do see the favicon. Here is my code within the HTML header: <link rel="shortcut icon" sizes="16x16 32x32 64x64" href="/favicon.ico" type="image/x-icon" /> <link rel="icon" href="favicon.ico" type="image/x-icon" />

Favicon is not showing if the URL starts with https://

北城余情 提交于 2021-02-07 14:30:32
问题 I am facing one issue with favicon.ico. Here is my link rel code which has been included in header portion. <link rel="shortcut icon" type="image/x-icon" href="favicon.ico" /> The problem is, I can view the favicon in all browsers if the url starts with http://. When the address starts with https://, the favicon is not showing in IE browser. Is there anything that I need to do? Did I miss anything important to include? 回答1: I had the same problem and fixed it by putting the following line in

Favicon is not showing if the URL starts with https://

99封情书 提交于 2021-02-07 14:29:36
问题 I am facing one issue with favicon.ico. Here is my link rel code which has been included in header portion. <link rel="shortcut icon" type="image/x-icon" href="favicon.ico" /> The problem is, I can view the favicon in all browsers if the url starts with http://. When the address starts with https://, the favicon is not showing in IE browser. Is there anything that I need to do? Did I miss anything important to include? 回答1: I had the same problem and fixed it by putting the following line in

Dynamic svg favicon?

孤街醉人 提交于 2021-02-06 09:08:44
问题 I have an icon as SVG. I want to have it in different colors as favicon. Since there isn't any toDataUrl() for SVG elements I don't see a solution that doesn't involve a server. Any idea for a client side solution? 回答1: fabric.js supports rendering of SVG elements into canvas elements. 回答2: This is not exactly what you asked, but here's a page testing the support for svg favicons in browsers. If the browser supports svg as favicon it's trivial to generate a data url from the svg markup and

Base64 icons favicon

孤人 提交于 2021-01-27 13:14:09
问题 I have been struggling to get favicon to work. Finally, I got it to work by using a Base64 version per the answer to this previous question: local (file://) website favicon works in Firefox, not in Chrome or Safari- why? Now, I want to save the bookmark to my phone's home screen, but the icon the phone uses is not favicon. Instead, it is just a black box with a letter "S" (being the first letter of my app's title). I'm sure this is by default. I have seen the favicon generators where all

Favicon disappears after preventing execution of a specific inline script tag by Tampemonkey

喜欢而已 提交于 2020-12-15 05:45:28
问题 I use this code in Tampermonkey to prevent certain script tag from executing: https://stackoverflow.com/a/50024143/8849796 (function() { 'use strict'; window.stop(); const xhr = new XMLHttpRequest(); xhr.open('GET', window.location.href); xhr.onload = () => { var html = xhr.responseText .replace(/<script\b[\s\S]*?<\/script>/g, s => { // check if script tag should be replaced/deleted if (s.includes('window.location')) { return ''; } else { return s; } }); document.open(); document.write(html);