Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "ShotBird - Scrolling Screenshots, Tweet Images & Editor",
"description": "Take scrolling screenshots, turn tweets into images, and edit captures\u2014all in one lightweight extension.",
"version": "1.4",
"manifest_version": 3,
"options_page": "options.html",
"permissions": [
"activeTab",
"scripting",
"downloads",
"storage",
"tabs",
"debugger"
],
"offline_enabled": true,
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html"
},
"commands": {
"_execute_action": [],
"capture-fullscreen": {
"description": "Capture Full Screen"
},
"capture-area": {
"description": "Capture Area"
}
},
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"web_accessible_resources": [
{
"resources": [
"*"
],
"matches": [
"<all_urls>"
]
}
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
}
]
}