Right-Click Borescope
List all images under your cursor, even ones hidden by other elements
Что такое Right-Click Borescope?
Right-Click Borescope - это расширение Chrome, разработанное blackle mori, и его основная функция - "List all images under your cursor, even ones hidden by other elements".
Снимки экрана расширения
Скачать файл CRX расширения Right-Click Borescope
Скачайте файлы расширений Right-Click Borescope в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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. Основная информация о расширении
| Название | |
| ID | mmdokamaalplkfiddbkhpfjmkhecbcnh |
| Официальный URL | https://chromewebstore.google.com/detail/right-click-borescope/mmdokamaalplkfiddbkhpfjmkhecbcnh |
| Описание | List all images under your cursor, even ones hidden by other elements |
| Размер файла | 70.58 KB |
| Количество установок | 537 |
| Текущая Версия | 0.0.4 |
| Последнее Обновление | 2022-05-10 |
| Дата публикации | 2022-03-29 |
| Рейтинг | 5.00/5 Всего 12 оценок |
| Разработчик | blackle mori |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/blackle/Right-Click-Borescope |
| URL страницы помощи | https://github.com/blackle/Right-Click-Borescope/issues |
| Поддерживаемые языки | 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
} | |