Inspect and view changes in FontViz: Inspect fonts with ease source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "FontViz: Inspect fonts with ease",
"version": "1.0.10",
"description": "Easily inspect and validate the fonts used on any website or web application",
"manifest_version": 3,
"action": {
"default_popup": "static/popup.html",
"default_icon": "./static/assets/image_32.png"
},
"icons": {
"16": "./static/assets/image_16.png",
"32": "./static/assets/image_32.png",
"64": "./static/assets/image_64.png",
"128": "./static/assets/image_128.png"
},
"permissions": [
"activeTab",
"scripting"
],
"background": {
"matches": [
"<all_urls>"
],
"service_worker": "src/background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"src/contentScript.js"
],
"css": [
"static/contentStyles.css"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}