Right-Click Borescope
List all images under your cursor, even ones hidden by other elements
What is Right-Click Borescope?
Right-Click Borescope is a Chrome extension developed by blackle mori, and its main feature is "List all images under your cursor, even ones hidden by other elements".
Extension Screenshots
Download Right-Click Borescope Extension CRX File
Download Right-Click Borescope extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Dig into web pages, find buried treasure. Right-Click Borescope allows you to view all images under your cursor, even if there's other images covering it, or if it's an image that has "right-click save" disabled.
Extension Basic Information
Name | Right-Click Borescope |
ID | mmdokamaalplkfiddbkhpfjmkhecbcnh |
Official URL | https://chromewebstore.google.com/detail/right-click-borescope/mmdokamaalplkfiddbkhpfjmkhecbcnh |
Description | List all images under your cursor, even ones hidden by other elements |
File Size | 70.58 KB |
Installation Count | 537 |
Current Version | 0.0.4 |
Last Updated | 2022-05-10 |
Publish Date | 2022-03-29 |
Rating | 5.00/5 Total 12 Ratings |
Developer | blackle mori |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/blackle/Right-Click-Borescope |
Help Page URL | https://github.com/blackle/Right-Click-Borescope/issues |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Right-Click Borescope", "version": "0.0.4", "description": "List all images under your cursor, even ones hidden by other elements", "permissions": [ "contextMenus" ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "client.js" ], "run_at": "document_end", "all_frames": true } ], "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "manifest_version": 3 } |