Favioli
Emoji favicons for the web
What is Favioli?
Favioli is a Chrome extension developed by https://favioli.com, and its main feature is "Emoji favicons for the web".
Extension Screenshots
Download Favioli Extension CRX File
Download Favioli extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Replace blank favicons with unique emoji and override existing favicons
Extension Basic Information
Name | Favioli |
ID | pnoookpoipfmadlpkijnboajfklplgbe |
Official URL | https://chromewebstore.google.com/detail/favioli/pnoookpoipfmadlpkijnboajfklplgbe |
Description | Emoji favicons for the web |
File Size | 227 KB |
Installation Count | 1,325 |
Current Version | 2.0.1 |
Last Updated | 2022-07-10 |
Publish Date | 2020-04-25 |
Rating | 4.62/5 Total 13 Ratings |
Developer | https://favioli.com |
[email protected] | |
Payment Type | free |
Help Page URL | https://github.com/ivebencrazy/favioli/issues |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Favioli", "description": "Emoji favicons for the web", "version": "2.0.1", "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content_script.js" ], "run_at": "document_idle" } ], "options_page": "options.html", "permissions": [ "storage" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "action": { "default_popup": "popup.html", "default_icon": { "32": "icons\/32.png", "48": "icons\/48.png", "64": "icons\/64.png", "128": "icons\/128.png", "256": "icons\/256.png" } }, "icons": { "32": "icons\/32.png", "48": "icons\/48.png", "64": "icons\/64.png", "128": "icons\/128.png", "256": "icons\/256.png" } } |