Full Crosshair Cursor over window.
It's just simple helper web brouser extension. It draws full window crosshair cursor. I wrote this to make it easier to analyze .png charts that I open in a web browser.
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": 2,
"name": "Full Crosshair Cursor",
"version": "1.0.1",
"description": "Full Crosshair Cursor over window",
"icons": {
"16": "src/icons/16.png",
"48": "src/icons/48.png",
"128": "src/icons/128.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"src/app.js"
],
"css": [
"src/style.css"
]
}
],
"permissions": [
"activeTab"
]
}