Right-Click Borescope
List all images under your cursor, even ones hidden by other elements
Wat is Right-Click Borescope?
Right-Click Borescope is een Chrome-extensie ontwikkeld door blackle mori, en de belangrijkste functie is "List all images under your cursor, even ones hidden by other elements".
Extensie Screenshots
Download het CRX-bestand van de extensie Right-Click Borescope
Download Right-Click Borescope-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Right-Click Borescope |
ID | mmdokamaalplkfiddbkhpfjmkhecbcnh |
Officiële URL | https://chromewebstore.google.com/detail/right-click-borescope/mmdokamaalplkfiddbkhpfjmkhecbcnh |
Beschrijving | List all images under your cursor, even ones hidden by other elements |
Bestandsgrootte | 70.58 KB |
Aantal Installaties | 537 |
Huidige Versie | 0.0.4 |
Laatst Bijgewerkt | 2022-05-10 |
Publicatiedatum | 2022-03-29 |
Beoordeling | 5.00/5 Totaal 12 Beoordelingen |
Ontwikkelaar | blackle mori |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/blackle/Right-Click-Borescope |
Help Pagina-URL | https://github.com/blackle/Right-Click-Borescope/issues |
Ondersteunde Talen | 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 } |