Dollarcake
The more you as a creator EARN the more your community EARNS
Что такое Dollarcake?
Dollarcake - это расширение Chrome, разработанное https://dollarcake.com, и его основная функция - "The more you as a creator EARN the more your community EARNS".
Снимки экрана расширения
Скачать файл CRX расширения Dollarcake
Скачайте файлы расширений Dollarcake в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | Dollarcake |
ID | lhckeajmkomcmgnicmklgggmobonehbl |
Официальный URL | https://chromewebstore.google.com/detail/dollarcake/lhckeajmkomcmgnicmklgggmobonehbl |
Описание | The more you as a creator EARN the more your community EARNS |
Размер файла | 4.17 MB |
Количество установок | 197 |
Текущая Версия | 1.0.4.1 |
Последнее Обновление | 2021-11-19 |
Дата публикации | 2021-10-13 |
Рейтинг | 5.00/5 Всего 13 оценок |
Разработчик | https://dollarcake.com |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://dollarcake.com |
URL страницы политики конфиденциальности | https://dollarcake.com/privacy |
Поддерживаемые языки | 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" ] } |