Skip to content

Commit

Permalink
feat: update ff ext version
Browse files Browse the repository at this point in the history
  • Loading branch information
pistom committed Aug 9, 2024
1 parent b43b044 commit 5af5717
Showing 1 changed file with 12 additions and 14 deletions.
26 changes: 12 additions & 14 deletions public/manifests/firefox.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,18 @@
"manifest_version": 2,
"name": "Highlight or Hide Search Engine Results",
"short_name": "HoHSER",
"version": "4.4.0",
"version": "4.4.1",
"developer": {
"name": "Tomasz Pisarek",
"url": "https://github.com/pistom"
},

"description": "Filter search engine results. Block unwanted results and highlight the favorite ones. For Google and other popular search engines.",

"icons": {
"19": "images/hohser-19.png",
"32": "images/hohser-32.png",
"48": "images/hohser-48.png",
"96": "images/hohser-96.png"
},

"browser_action": {
"default_title": "Highlight or Hide Search Engine Results",
"default_popup": "popup.html",
Expand All @@ -25,15 +22,15 @@
"38": "images/hohser-38.png"
}
},

"options_ui": {
"page": "popup.html",
"open_in_tab": true,
"browser_style": false
},

"permissions": ["storage", "tabs"],

"permissions": [
"storage",
"tabs"
],
"content_scripts": [
{
"matches": [
Expand Down Expand Up @@ -250,25 +247,26 @@
"*://*.baidu.com/*",
"*://*.kagi.com/*"
],
"js": ["static/js/content.js"],
"css": ["static/css/content.css"]
"js": [
"static/js/content.js"
],
"css": [
"static/css/content.css"
]
}
],

"content_security_policy": "script-src 'self'; object-src 'self';",

"browser_specific_settings": {
"gecko": {
"id": "{2d0ade95-bf3c-4868-b877-71ccd038e11b}",
"strict_min_version": "79.0"
}
},

"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+1"
}
}
}
}
}

0 comments on commit 5af5717

Please sign in to comment.