Find and notify the user of zero-width unicode characters.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 2,
"name": "zwBlocker",
"description": "Find and notify the user of zero-width unicode characters.",
"version": "1.0.1",
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html",
"default_title": "Find zero-width characters."
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"jquery.js",
"contentScript.js"
],
"run_at": "document_end"
}
],
"permissions": [
"tabs",
"activeTab",
"storage",
"notifications"
],
"content_security_policy": "object-src 'self'"
}