Inspect and view changes in GoogleFontsTester 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 2,
"name": "GoogleFontsTester",
"version": "1.2",
"description": "Selecting GoogleFont and see how it will be on your page",
"icons": {
"16": "images/icon1.png",
"48": "images/icon1.png",
"128": "images/icon1.png"
},
"browser_action": {
"default_icon": "images/icon1.png",
"default_title": "GoogleFontsTester",
"default_popup": "popup.html"
},
"background": {
"page": "background.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"jquery-3.3.1.min.js",
"contentScript.js"
]
}
],
"permissions": [
"activeTab"
]
}