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": "Microsoft to Microslop",
"version": "2.1",
"description": "Replaces every mention of 'Microsoft' with 'Microslop'",
"icons": {
"32": "icon32.png",
"64": "icon64.png"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"32": "icon32.png",
"64": "icon64.png"
}
},
"permissions": [
"storage",
"activeTab"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
]
}