-
Notifications
You must be signed in to change notification settings - Fork 85
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Icon for private network websites #1
Comments
@zivkr2 Excellent idea! I was able to create a generic icon with a white, thin Roboto letter using the following SVG: <svg width="512" height="512">
<circle cx="230" cy="230" r="230" fill="#E91E63" />
<text x="230" y="235" alignment-baseline="central" text-anchor="middle" fill="#fff" font-size="275" font-weight="100" font-family="Roboto">X</text>
</svg> This is how it looks: What do you think? If you like the way it looks, we'll need to generate an SVG for each letter and number (A-Z, 0-9) and improve the |
@zivkr2 I created a Material letter icons generator in Node.js: Now all that's left is to integrate the generated icons into Applicationize. =) |
As per @zivkr2’s suggestion in #1, we now set a placeholder icon for unreachable URLs. The icons are derived from `material-letter-icons`: https://github.com/eladnava/material-letter-icons
@zivkr2 It has been implemented. We now support unreachable URLs! Give it a shot at https://applicationize.me. |
Use crx instead of temporary crx3-ahwayakchih
Applicationize is unable to fetch the favicon from private network websites that require VPN for accesses.
The suggested solution is to create a generic icon from the first letter of the domain name,
like the default icon in the gmail app, a simple colored circle with the First letter centered inside.
use this icon for hxxps://fakeinternalsite.com for example
The text was updated successfully, but these errors were encountered: