Dollarcake
The more you as a creator EARN the more your community EARNS
Cos'è Dollarcake?
Dollarcake è un'estensione di Chrome sviluppata da https://dollarcake.com, e la sua funzione principale è "The more you as a creator EARN the more your community EARNS".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Dollarcake
Scarica i file di estensione Dollarcake in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Dollarcake is a way to support your favorite Youtube channels. Stake Dollarcake tokens with a channel and earn rewards for you and the Youtube channel.
Informazioni di Base sull'Estensione
Nome | Dollarcake |
ID | lhckeajmkomcmgnicmklgggmobonehbl |
URL Ufficiale | https://chromewebstore.google.com/detail/dollarcake/lhckeajmkomcmgnicmklgggmobonehbl |
Descrizione | The more you as a creator EARN the more your community EARNS |
Dimensione del File | 4.17 MB |
Conteggio Installazioni | 197 |
Versione Corrente | 1.0.4.1 |
Ultimo Aggiornamento | 2021-11-19 |
Data di Pubblicazione | 2021-10-13 |
Valutazione | 5.00/5 Totale 13 Valutazioni |
Sviluppatore | https://dollarcake.com |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://dollarcake.com |
URL della Pagina della Politica sulla Privacy | https://dollarcake.com/privacy |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Dollarcake", "description": "The more you as a creator EARN the more your community EARNS", "version": "1.0.4.1", "content_security_policy": "script-src 'self' https:\/\/apis.google.com\/; object-src 'self'", "permissions": [ "identity", "https:\/\/*.youtube.com\/*", "http:\/\/*.youtube.com\/*" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/*.youtube.com\/*", "http:\/\/*.youtube.com\/*", "file:\/\/*\/*" ], "js": [ "content.js" ] } ], "browser_action": { "default_popup": "index.html" }, "manifest_version": 2, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "web_accessible_resources": [ "inpage.js" ] } |