Stokki
Load your favorite stocks sites, all at once, with a single Stock-Ticker submit
什么是Stokki?
Stokki是由XYZET开发的Chrome扩展程序,该扩展的主要功能是“Load your favorite stocks sites, all at once, with a single Stock-Ticker submit”。
扩展截图
下载Stokki扩展crx文件
下载Stokki扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension will allow you to search for your stock-ticker in selected stock websites and searching engines, simultaneously. 扩展基本信息
| 名称 | |
| ID | kbgdmjcjojfdephnmeoajnmfhaojghlb |
| 官方URL | https://chromewebstore.google.com/detail/stokki/kbgdmjcjojfdephnmeoajnmfhaojghlb |
| 简介 | Load your favorite stocks sites, all at once, with a single Stock-Ticker submit |
| 文件大小 | 1023 KB |
| 安装次数 | 159 |
| 当前版本 | 1.7 |
| 更新时间 | 2022-02-25 |
| 上架时间 | 2022-02-17 |
| 评分 | 5.00/5 共3次评分 |
| 开发者 | XYZET |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://www.xyzet.me/stokki |
| 帮助页面URL | https://www.xyzet.me/stokki |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Stokki",
"description": "Load your favorite stocks sites, all at once, with a single Stock-Ticker submit",
"version": "1.7",
"manifest_version": 3,
"permissions": [
"tabs",
"scripting",
"storage"
],
"host_permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"*:\/\/*\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/*\/*"
],
"js": [
"content.js"
],
"css": [
"fix.css"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": [
"icon3.png",
"icon16.png",
"icon48.png",
"icon128.png"
],
"matches": [
"https:\/\/*\/*"
]
}
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "Stokki",
"default_icon": "icon3.png",
"default_popup": "popup.html"
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
} | |