Skip to content
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

Closed
zivkr2 opened this issue Jan 7, 2016 · 3 comments
Closed

Icon for private network websites #1

zivkr2 opened this issue Jan 7, 2016 · 3 comments

Comments

@zivkr2
Copy link

zivkr2 commented Jan 7, 2016

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
image

@eladnava
Copy link
Owner

@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:

screen shot 2016-01-14 at 5 00 14 pm

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 crx generator code to use these images if the web app URL fails to load for some reason.

@eladnava
Copy link
Owner

eladnava commented Jan 15, 2016

@zivkr2 I created a Material letter icons generator in Node.js:
https://github.com/eladnava/material-letter-icons

screen shot 2016-01-15 at 3 55 02 pm

Now all that's left is to integrate the generated icons into Applicationize. =)

eladnava added a commit that referenced this issue Jan 15, 2016
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
@eladnava
Copy link
Owner

eladnava commented Jan 15, 2016

@zivkr2 It has been implemented. We now support unreachable URLs! Give it a shot at https://applicationize.me.

eladnava pushed a commit that referenced this issue Oct 27, 2019
Use crx instead of temporary crx3-ahwayakchih
eladnava pushed a commit that referenced this issue Mar 8, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants