Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
workeffortwaste committed Feb 3, 2022
2 parents 257b4eb + e300b19 commit de6a8bd
Showing 1 changed file with 18 additions and 11 deletions.
29 changes: 18 additions & 11 deletions src/manifest.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,19 @@
{
"manifest_version": 2,
"name": "PageSpeed Saver",
"version": "2.1.1",
"icons": { "128": "icon128.png"},
"description": "Quickly save your PageSpeed Insights reports to JSON.",
"web_accessible_resources": ["bundle.js"],
"content_scripts" : [{
"matches" : [ "https://pagespeed.web.dev/*"],
"js" : ["index.js"]
}]
}
"manifest_version": 3,
"name": "PageSpeed Saver",
"version": "2.1.0",
"icons": { "128": "icon128.png" },
"description": "Quickly save your PageSpeed Insights reports to JSON.",
"content_scripts": [
{
"matches": ["https://pagespeed.web.dev/*"],
"js": ["index.js"]
}
],
"web_accessible_resources": [
{
"resources": ["bundle.js"],
"matches": ["https://pagespeed.web.dev/*"]
}
]
}

0 comments on commit de6a8bd

Please sign in to comment.