Speed up your design workflow!
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"description": "Speed up your design workflow!",
"version": "7.1.3",
"manifest_version": 3,
"short_name": "Fonts Ninja",
"name": "Fonts Ninja",
"homepage_url": "https://www.fonts.ninja",
"author": "Fonts Ninja",
"background": {
"scripts": [
"background.bundle.js"
]
},
"action": {
"default_icon": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
"128": "icons/icon-128.png"
},
"default_title": "Fonts Ninja"
},
"browser_specific_settings": {
"gecko": {
"id": "@ffn",
"strict_min_version": "58.0"
}
},
"icons": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
"128": "icons/icon-128.png"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"all_frames": true,
"js": [
"contentScript.bundle.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"extension.bundle.js",
"frame.html",
"icons/*",
"img/*",
"fonts-ninja-helpers/*",
"*.woff",
"*.woff2"
],
"matches": [
"http://*/*",
"https://*/*"
]
}
],
"permissions": [
"activeTab",
"storage",
"webNavigation"
],
"host_permissions": [
"http://*/*",
"https://*/*"
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'",
"sandbox": "sandbox allow-scripts; script-src 'self' ; object-src 'self'"
}
}