Inspect and view changes in HonorHashem source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"name": "HonorHashem",
"version": "1.0",
"description": "Filters and replaces specified words on web pages before display",
"permissions": [
"declarativeNetRequest",
"activeTab",
"tabs",
"storage"
],
"host_permissions": [
"<all_urls>"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"run_at": "document_start"
}
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html"
},
"icons": {
"16": "RespectTheName16.png",
"32": "RespectTheName32.png",
"48": "RespectTheName48.png",
"128": "RespectTheName128.png"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}