Inspect and view changes in WhatFont - What html font 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
{
"manifest_version": 3,
"name": "__MSG_EXTENSION_NAME__",
"short_name": "__MSG_EXTENSION_SHORT_NAME__",
"description": "__MSG_EXTENSION_DESCRIPTION__",
"default_locale": "en",
"version": "0.0.6",
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"content.js",
"html2canvas.min.js"
]
}
],
"action": {
"default_icon": "img/icon48.png"
},
"permissions": [
"tabs"
],
"host_permissions": [
"<all_urls>"
],
"icons": {
"48": "img/icon48.png",
"128": "img/icon128.png",
"256": "img/icon256.png"
},
"background": {
"service_worker": "bundle.js"
},
"web_accessible_resources": [
{
"resources": [
"wf.css"
],
"matches": [
"<all_urls>"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}