Famous Fox Federation
A helpful chrome extension to interact more easily with the Famous Fox Federation utilities!
Что такое Famous Fox Federation?
Famous Fox Federation - это расширение Chrome, разработанное https://famousfoxes.com, и его основная функция - "A helpful chrome extension to interact more easily with the Famous Fox Federation utilities!".
Снимки экрана расширения
Скачать файл CRX расширения Famous Fox Federation
Скачайте файлы расширений Famous Fox Federation в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
The Famous Fox Federation makes it easy to access our tools directly from Magic Eden. You can now directly invoke Ding, Sweep, List & Bid from collection pages. View Fox stats on Rafffle as well as Magic Eden. Support for Citrus Buy Now, Pay Later on Tensor.
Основная информация о расширении
Название | Famous Fox Federation |
ID | plinngbkcncieacbhbfldekjimccdbha |
Официальный URL | https://chromewebstore.google.com/detail/famous-fox-federation/plinngbkcncieacbhbfldekjimccdbha |
Описание | A helpful chrome extension to interact more easily with the Famous Fox Federation utilities! |
Размер файла | 828 KB |
Количество установок | 671 |
Текущая Версия | 1.24 |
Последнее Обновление | 2023-10-26 |
Дата публикации | 2022-04-04 |
Рейтинг | 5.00/5 Всего 10 оценок |
Разработчик | https://famousfoxes.com |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://famousfoxes.com |
URL страницы помощи | https://discord.gg/famousfoxes |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Famous Fox Federation", "version": "1.24", "manifest_version": 3, "icons": { "16": "icons\/logo16.png", "48": "icons\/logo48.png", "128": "icons\/logo128.png" }, "description": "A helpful chrome extension to interact more easily with the Famous Fox Federation utilities!", "permissions": [ "webNavigation", "scripting", "storage" ], "host_permissions": [ "https:\/\/*.magiceden.io\/*", "https:\/\/hyperspace.xyz\/*", "https:\/\/rafffle.famousfoxes.com\/*", "https:\/\/*.tensor.trade\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.magiceden.io\/*", "https:\/\/hyperspace.xyz\/*", "https:\/\/rafffle.famousfoxes.com\/*", "https:\/\/*.tensor.trade\/*" ], "css": [ "styles.css" ], "js": [ "content-script.js" ] } ], "web_accessible_resources": [ { "resources": [ "fonts\/Lilita-One.woff2", "fonts\/Gaegu-Regular.ttf", "icons\/powered_by_fff.png", "icons\/powered_by_fff.svg", "icons\/logo48.png", "icons\/house.svg", "icons\/citrus.png" ], "matches": [ "https:\/\/*.magiceden.io\/*", "https:\/\/hyperspace.xyz\/*", "https:\/\/rafffle.famousfoxes.com\/*", "https:\/\/*.tensor.trade\/*" ] } ], "action": { "default_popup": "popup.html" } } |