Spider Sense
Spider Sense helps Spider developers working with Scrapy Cloud monitor jobs.
Что такое Spider Sense?
Spider Sense - это расширение Chrome, разработанное https://shanky.dev, и его основная функция - "Spider Sense helps Spider developers working with Scrapy Cloud monitor jobs.".
Снимки экрана расширения
Скачать файл CRX расширения Spider Sense
Скачайте файлы расширений Spider Sense в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
# Spider-Sense
A browser extension to monitor your spiders deployed on Scrapy Cloud.
## How to install this extension from source?
- Clone the repository
- Open `about:debugging` on Firefox, click on `This Firefox` and select `Load Temporary Add-on...`
or open `chrome://extensions/` on Chrome, enable `Developer mode` and select `Load unpacked`
- Select `manifest.json` file present in this repository
- You'll see a black 'Bolt' icon on the Extension/Add-on bar of respective browser
- Click on the icon to enable the popup and follow instructions
> Please create issue if you find some, hope this extension helps your workflow :) - [Shashank](https://github.com/realslimshanky/) Основная информация о расширении
| Название | |
| ID | gdpemckobcbpkgibfiiaeoohjccaebfj |
| Официальный URL | https://chromewebstore.google.com/detail/spider-sense/gdpemckobcbpkgibfiiaeoohjccaebfj |
| Описание | Spider Sense helps Spider developers working with Scrapy Cloud monitor jobs. |
| Размер файла | 43.76 KB |
| Количество установок | 20 |
| Текущая Версия | 0.1 |
| Последнее Обновление | 2019-12-05 |
| Дата публикации | 2019-12-04 |
| Рейтинг | 4.00/5 Всего 1 оценок |
| Разработчик | https://shanky.dev |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/realslimshanky/Spider-Sense |
| URL страницы помощи | https://github.com/realslimshanky/Spider-Sense |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Spider Sense",
"version": "0.1",
"description": "Spider Sense helps Spider developers working with Scrapy Cloud monitor jobs.",
"homepage_url": "https:\/\/github.com\/realslimshanky\/Spider-Sense",
"icons": {
"48": "icons\/SeekClipart.com_blitz-clipart_204510.png"
},
"browser_action": {
"default_icon": "icons\/SeekClipart.com_blitz-clipart_204510.png",
"default_popup": "popup\/spider_sense.html",
"default_title": "Spider Sense"
},
"background": {
"scripts": [
"browser-polyfill.min.js",
"background-script.js"
]
},
"permissions": [
"storage"
]
} | |