Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"applications": {
"gecko": {
"id": "info@paris-web.it",
"strict_min_version": "57.0"
}
},
"manifest_version": 2,
"name": "FontsInfos",
"version": "1.2",
"description": "font-inspector",
"icons": {
"16": "icon.png",
"32": "icon32.png",
"48": "icon48.png",
"128": "icon128.png"
},
"permissions": [
"activeTab",
"storage",
"contextMenus",
"http://*/*",
"https://*/*"
],
"browser_action": {
"default_icon": "icon.png",
"default_title": "FontsInfos",
"default_popup": "popup.html"
},
"background": {
"page": "background.html"
},
"options_ui": {
"page": "options.html",
"browser_style": true
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"jquery-3.4.1.min.js"
]
}
]
}