# chaoxingchati **Repository Path**: sunxiaoxue113/chaoxingchati ## Basic Information - **Project Name**: chaoxingchati - **Description**: 超星学习通,网页端刷课,划题查题 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2020-05-16 - **Last Updated**: 2022-05-16 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 超星查题 ### 关注我们 ![南泰校园](https://github.com/danyanp/chaoxingchati/blob/master/qrcode.jpg?raw=true) ## 超星划题查题 - 划题选中题目 - 后台获取题目,查询 - 返回题目答案 ## 使用 ### 1.在地址栏输入 ``` chrome://extensions/ ``` ### 2.选着开发者模式 ### 3.解压下载压缩包,并加载已解压的扩展程序 ![安装](https://github.com/danyanp/chaoxingchati/blob/master/%E4%BD%BF%E7%94%A8.png?raw=true) - # manifest.json文件 ``` { //插件标题 "name" : "超星查题" , //插件描述 "description" : "支持超星题目查找" , "manifest_version" : 2 , "version" : "1.0.0" , "author": "@单眼皮_905986631", //图标 "icons": { "48": "icon.png", "128": "icon.png" }, //需要权限 "permissions" : [ "" , "contextMenus" , "storage" , "clipboardWrite" , "clipboardRead" , "activeTab" , "identity", "webRequest", "webRequestBlocking" ] , //插件后端,一直运行的js "background" : { "scripts" : ["background.js"] } , //菜单栏上的图标和功能 "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, //使用到的js "content_scripts": [ { "all_frames": true, "js": ["Scribing.js","jQuery.js","popup.js"], "matches": [""], "match_about_blank": true, "run_at": "document_end" } ] } ``` - # popup.html文件 - # popuup.js - # background.js - # Scribing.js