东方财富辅助程序
This extension demonstrates a 'browser action' with kittens.
什么是东方财富辅助程序?
东方财富辅助程序是由[email protected]开发的Chrome扩展程序,该扩展的主要功能是“This extension demonstrates a 'browser action' with kittens.”。
扩展截图
下载东方财富辅助程序扩展crx文件
下载东方财富辅助程序扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
显示【持有基金产品】明细中的收益率,满足
(1)按基金产品显示
本插件已下线—2017.02.09。 扩展基本信息
| 名称 | |
| ID | fnfkhhfielhomihgnhjelkhcapogbhfk |
| 官方URL | https://chromewebstore.google.com/detail/%E4%B8%9C%E6%96%B9%E8%B4%A2%E5%AF%8C%E8%BE%85%E5%8A%A9%E7%A8%8B%E5%BA%8F/fnfkhhfielhomihgnhjelkhcapogbhfk |
| 简介 | This extension demonstrates a 'browser action' with kittens. |
| 文件大小 | 42.63 KB |
| 安装次数 | 18 |
| 当前版本 | 2.4 |
| 更新时间 | 2017-02-09 |
| 上架时间 | 2017-02-09 |
| 评分 | 1.00/5 共1次评分 |
| 开发者 | [email protected] |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | zh-CN |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "\u4e1c\u65b9\u8d22\u5bcc\u8f85\u52a9\u7a0b\u5e8f",
"description": "This extension demonstrates a 'browser action' with kittens.",
"version": "2.4",
"browser_action": {
"default_icon": "icon.png"
},
"background": {
"scripts": [
"jquery-1.10.2.min.js"
],
"persistent": true
},
"web_accessible_resources": [
"jquery-1.10.2.min.js"
],
"content_scripts": [
{
"matches": [
"https:\/\/trade.1234567.com.cn\/*"
],
"js": [
"myscript.js"
]
}
]
} | |