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": "Frog Launcher \ud83d\udc38\ud83d\udca5",
"version": "1.0",
"description": "Launch frogs at things you disagree with online! \ud83d\udc38\ud83d\udca5",
"permissions": [
"storage",
"activeTab",
"scripting"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"css": [
"content.css"
]
}
],
"web_accessible_resources": [
{
"resources": [
"images\/*",
"sounds\/*"
],
"matches": [
"<all_urls>"
]
}
],
"commands": {
"toggle-frog-mode": {
"suggested_key": {
"default": "Ctrl+Shift+F"
},
"description": "Toggle Frog Mode"
}
}
}