Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Fiverr Quick View",
"version": "1.0.0",
"description": "Fiverr Quick View - It allows you to sort search results, extract keywords, and view important metrics like favorites and ratings.",
"icons": {
"16": "images\/icon-16.png",
"48": "images\/icon-48.png",
"128": "images\/icon-128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.fiverr.com\/*",
"http:\/\/www.fiverr.com\/*"
],
"js": [
"content.js"
]
}
],
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage"
],
"web_accessible_resources": [
{
"resources": [
"flags\/*.png"
],
"matches": [
"https:\/\/www.fiverr.com\/*",
"http:\/\/www.fiverr.com\/*"
]
}
],
"action": {
"default_icon": {
"16": "images\/icon-16.png",
"48": "images\/icon-48.png",
"128": "images\/icon-128.png"
},
"default_popup": "popup.html"
}
}