1 chance on 100 to turn your cursor into a buttons repulsing cursor. Perfect to prank your colleagues.
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": "Cursor Repulsor Prank",
"description": "1 chance on 100 to turn your cursor into a buttons repulsing cursor. Perfect to prank your colleagues.",
"version": "1.0.0",
"icons": {
"16": "icon-16.png",
"19": "icon-19.png",
"38": "icon-38.png",
"128": "icon-128.png"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"./content.js"
],
"run_at": "document_end"
}
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"permissions": [
"activeTab",
"tabs",
"<all_urls>"
],
"browser_action": {
"default_icon": {
"16": "icon-16.png",
"19": "icon-19.png",
"38": "icon-38.png",
"128": "icon-128.png"
}
}
}