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": "Wordle Bot and Ad Block",
"short_name": "Worlde Bot",
"version": "1.1",
"description": "Solves worlde and blocks ads",
"author": "Munya Mpofu",
"homepage_url": "https:\/\/www.capeweb.info\/",
"icons": {
"16": "images\/16.png",
"24": "images\/24.png",
"32": "images\/32.png",
"48": "images\/48.png",
"96": "images\/96.png",
"128": "images\/128.png"
},
"action": {
"default_icon": {
"16": "images\/16.png",
"32": "images\/32.png"
},
"default_title": "Open Side Panel"
},
"side_panel": {
"default_path": "sidepanel.html"
},
"background": {
"service_worker": "service-worker.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.nytimes.com\/games\/wordle\/index.html"
],
"js": [
"scripts\/content.js"
],
"all_frames": true,
"run_at": "document_end"
}
],
"content_security_policy": {
"extension_pages": "default-src 'none'; style-src 'self'; media-src 'none'; child-src 'none'; connect-src https:; script-src 'self'; img-src; object-src 'none'"
},
"minimum_chrome_version": "103",
"offline_enabled": true,
"permissions": [
"sidePanel",
"storage"
],
"web_accessible_resources": [
{
"resources": [
"words.json"
],
"matches": [
"<all_urls>"
]
}
]
}