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",
"description": "Seamlessly replace text on any web page.",
"homepage_url": "https:\/\/github.com\/dan-lovelace\/word-replacer-max",
"icons": {
"64": "assets\/img\/word-replacer-max-logo_64.png",
"128": "assets\/img\/word-replacer-max-logo_128.png",
"256": "assets\/img\/word-replacer-max-logo_256.png"
},
"manifest_version": 3,
"name": "Word Replacer Max",
"permissions": [
"contextMenus",
"storage"
],
"version": "0.18.1",
"action": {
"default_popup": "popup.html"
},
"author": {
"email": "[email protected]"
},
"background": {
"service_worker": "background.js"
},
"web_accessible_resources": [
{
"resources": [
"assets\/*"
],
"matches": [
"<all_urls>"
]
}
],
"content_scripts": [
{
"matches": [
"https:\/\/wordreplacermax.com\/*"
],
"js": [
"auth.js"
]
},
{
"matches": [
"<all_urls>"
],
"exclude_matches": [
"https:\/\/wordreplacermax.com\/*"
],
"js": [
"content.js"
],
"all_frames": true
}
],
"host_permissions": [
"https:\/\/api.wordreplacermax.com\/*"
]
}