Stokki
Load your favorite stocks sites, all at once, with a single Stock-Ticker submit
Wat is Stokki?
Stokki is een Chrome-extensie ontwikkeld door XYZET, en de belangrijkste functie is "Load your favorite stocks sites, all at once, with a single Stock-Ticker submit".
Extensie Screenshots
Download het CRX-bestand van de extensie Stokki
Download Stokki-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
This extension will allow you to search for your stock-ticker in selected stock websites and searching engines, simultaneously. Basisinformatie over de Extensie
| Naam | |
| ID | kbgdmjcjojfdephnmeoajnmfhaojghlb |
| Officiële URL | https://chromewebstore.google.com/detail/stokki/kbgdmjcjojfdephnmeoajnmfhaojghlb |
| Beschrijving | Load your favorite stocks sites, all at once, with a single Stock-Ticker submit |
| Bestandsgrootte | 1023 KB |
| Aantal Installaties | 159 |
| Huidige Versie | 1.7 |
| Laatst Bijgewerkt | 2022-02-25 |
| Publicatiedatum | 2022-02-17 |
| Beoordeling | 5.00/5 Totaal 3 Beoordelingen |
| Ontwikkelaar | XYZET |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://www.xyzet.me/stokki |
| Help Pagina-URL | https://www.xyzet.me/stokki |
| Ondersteunde Talen | 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"
}
} | |