Spider Sense
Spider Sense helps Spider developers working with Scrapy Cloud monitor jobs.
什么是Spider Sense?
Spider Sense是由https://shanky.dev开发的Chrome扩展程序,该扩展的主要功能是“Spider Sense helps Spider developers working with Scrapy Cloud monitor jobs.”。
扩展截图
下载Spider Sense扩展crx文件
下载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"
]
} | |