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 |
| Eメール | [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"
}
} | |