SFSアシスタント
SFC-SFSの補助機能を提供します
什么是SFSアシスタント?
SFSアシスタント是由namosuke开发的Chrome扩展程序,该扩展的主要功能是“SFC-SFSの補助機能を提供します”。
扩展截图
下载SFSアシスタント扩展crx文件
下载SFSアシスタント扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
SFC-SFSを使いやすくするChrome拡張機能です。SFC-SFSを立ち上げなくても未提出の課題一覧が見れるなど、豊富な機能があります。
扩展基本信息
名称 | |
ID | iibamhnbhigeffghjbplefemloaogiac |
官方URL | https://chrome.google.com/webstore/detail/sfs%E3%82%A2%E3%82%B7%E3%82%B9%E3%82%BF%E3%83%B3%E3%83%88/iibamhnbhigeffghjbplefemloaogiac |
简介 | SFC-SFSの補助機能を提供します |
文件大小 | 118 KB |
安装次数 | 49 |
当前版本 | 1.1.0 |
更新时间 | 2020-06-20 |
上架时间 | 2020-06-20 |
评分 | 5.00/5 共2次评分 |
开发者 | namosuke |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "SFC-SFS\u306e\u88dc\u52a9\u6a5f\u80fd\u3092\u63d0\u4f9b\u3057\u307e\u3059", "name": "SFS\u30a2\u30b7\u30b9\u30bf\u30f3\u30c8", "manifest_version": 2, "version": "1.1.0", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/vu.sfc.keio.ac.jp\/sfc-sfs\/sfs_class\/report\/submit_by_text.cgi*", "https:\/\/vu.sfc.keio.ac.jp\/sfc-sfs\/sfs_class\/report\/submit_by_file.cgi*", "https:\/\/vu.sfc.keio.ac.jp\/sfc-sfs\/sfs_class\/report\/submit_by_url.cgi*" ], "run_at": "document_end", "js": [ "report_submit.js" ] }, { "matches": [ "https:\/\/vu.sfc.keio.ac.jp\/sfc-sfs\/sfs_class\/report\/report.cgi*" ], "run_at": "document_end", "js": [ "report.js" ] }, { "matches": [ "https:\/\/vu.sfc.keio.ac.jp\/sfc-sfs\/*" ], "exclude_matches": [ "https:\/\/vu.sfc.keio.ac.jp\/sfc-sfs\/", "https:\/\/vu.sfc.keio.ac.jp\/sfc-sfs\/index.cgi*", "https:\/\/vu.sfc.keio.ac.jp\/sfc-sfs\/login.cgi" ], "run_at": "document_end", "js": [ "better_link.js" ], "all_frames": true }, { "matches": [ "https:\/\/vu.sfc.keio.ac.jp\/sfc-sfs\/portal_s\/s01.cgi*" ], "run_at": "document_end", "js": [ "get_session.js" ], "all_frames": true }, { "matches": [ "https:\/\/vu.sfc.keio.ac.jp\/sfc-sfs\/*" ], "css": [ "overwrite.css" ] } ], "browser_action": { "default_popup": "popup.html", "default_title": "\u672a\u63d0\u51fa\u306e\u8ab2\u984c\u4e00\u89a7" }, "permissions": [ "storage" ] } |