Build into separate folders
2659
dist/extension/birb.js
vendored
Normal file
BIN
dist/extension/images/icons/transparent/1024x1024x1.png
vendored
Normal file
|
After Width: | Height: | Size: 6.8 KiB |
BIN
dist/extension/images/icons/transparent/1024x768x1.png
vendored
Normal file
|
After Width: | Height: | Size: 5.4 KiB |
BIN
dist/extension/images/icons/transparent/128x128x1.png
vendored
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
dist/extension/images/icons/transparent/128x128x2.png
vendored
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
dist/extension/images/icons/transparent/16x16x1.png
vendored
Normal file
|
After Width: | Height: | Size: 635 B |
BIN
dist/extension/images/icons/transparent/16x16x2.png
vendored
Normal file
|
After Width: | Height: | Size: 829 B |
BIN
dist/extension/images/icons/transparent/256x256x1.png
vendored
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
dist/extension/images/icons/transparent/256x256x2.png
vendored
Normal file
|
After Width: | Height: | Size: 2.9 KiB |
BIN
dist/extension/images/icons/transparent/27x20x2.png
vendored
Normal file
|
After Width: | Height: | Size: 848 B |
BIN
dist/extension/images/icons/transparent/27x20x3.png
vendored
Normal file
|
After Width: | Height: | Size: 944 B |
BIN
dist/extension/images/icons/transparent/29x29x2.png
vendored
Normal file
|
After Width: | Height: | Size: 914 B |
BIN
dist/extension/images/icons/transparent/29x29x3.png
vendored
Normal file
|
After Width: | Height: | Size: 1018 B |
BIN
dist/extension/images/icons/transparent/32x24x2.png
vendored
Normal file
|
After Width: | Height: | Size: 881 B |
BIN
dist/extension/images/icons/transparent/32x24x3.png
vendored
Normal file
|
After Width: | Height: | Size: 953 B |
BIN
dist/extension/images/icons/transparent/32x32x1.png
vendored
Normal file
|
After Width: | Height: | Size: 829 B |
BIN
dist/extension/images/icons/transparent/32x32x2.png
vendored
Normal file
|
After Width: | Height: | Size: 936 B |
BIN
dist/extension/images/icons/transparent/48x48x1.png
vendored
Normal file
|
After Width: | Height: | Size: 856 B |
BIN
dist/extension/images/icons/transparent/512x512x1.png
vendored
Normal file
|
After Width: | Height: | Size: 2.9 KiB |
BIN
dist/extension/images/icons/transparent/512x512x2.png
vendored
Normal file
|
After Width: | Height: | Size: 6.8 KiB |
BIN
dist/extension/images/icons/transparent/60x45x2.png
vendored
Normal file
|
After Width: | Height: | Size: 1014 B |
BIN
dist/extension/images/icons/transparent/60x45x3.png
vendored
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
dist/extension/images/icons/transparent/67x50x2.png
vendored
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
dist/extension/images/icons/transparent/74x55x2.png
vendored
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
dist/extension/images/icons/transparent/96x96x1.png
vendored
Normal file
|
After Width: | Height: | Size: 1018 B |
BIN
dist/extension/images/icons/transparent/icon-transparent.png
vendored
Normal file
|
After Width: | Height: | Size: 10 KiB |
41
dist/extension/manifest.json
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
{
|
||||
"manifest_version": 3,
|
||||
"name": "Pocket Bird",
|
||||
"description": "It's a bird, in your browser. What more could you want?",
|
||||
"version": "2025.11.2.60",
|
||||
"homepage_url": "https://idreesinc.com",
|
||||
"icons": {
|
||||
"48": "images/icons/transparent/48x48x1.png",
|
||||
"96": "images/icons/transparent/96x96x1.png",
|
||||
"128": "images/icons/transparent/128x128x1.png"
|
||||
},
|
||||
"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"
|
||||
}
|
||||
}
|
||||
}
|
||||