Add extension manifest

This commit is contained in:
Idrees Hassan
2025-09-16 17:10:08 -04:00
parent ab33090eb6
commit a94cc92c52
6 changed files with 56 additions and 9 deletions

29
manifest.json Normal file
View File

@@ -0,0 +1,29 @@
{
"manifest_version": 3,
"name": "Browser Bird",
"description": "It's a bird, in your browser. What more could you want?",
"version": "2025.9.16.1",
"homepage_url": "https://idreesinc.com",
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["birb.js"]
}
],
"permissions": [
"storage",
"activeTab"
],
"web_accessible_resources": [
{
"resources": ["images/*"],
"matches": ["<all_urls>"]
}
],
"browser_specific_settings": {
"gecko": {
"id": "birb@idreesinc.com"
}
}
}