Mine-Craft Cursors
Replaces the standard mouse cursor.
Что такое Mine-Craft Cursors?
Mine-Craft Cursors - это расширение Chrome, разработанное minecursorsproject, и его основная функция - "Replaces the standard mouse cursor.".
Снимки экрана расширения
Скачать файл CRX расширения Mine-Craft Cursors
Скачайте файлы расширений Mine-Craft Cursors в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
9 Minecraft cursors, choose your own cursor style. Just click on the cursor you like and it will replace the default cursor :) You can resize the cursor of your choice from 16x16 to 128x128 pixels. ------------------- ! After installing this extension, refresh the previously opened tab if you want to use it on this page. ! According to the rules of the Chrome Web Store extension can not work on the store pages and home page. Please open any other website (for example, google.com) after installing this extension and check how the extension will work on it. -------------------
Основная информация о расширении
Название | |
ID | hfphbjkpbdaagnfbdalaokgbelecjhpo |
Официальный URL | https://chrome.google.com/webstore/detail/mine-craft-cursors/hfphbjkpbdaagnfbdalaokgbelecjhpo |
Описание | Replaces the standard mouse cursor. |
Размер файла | 256 KB |
Количество установок | 10,000 |
Текущая Версия | 1.0.0 |
Последнее Обновление | 2020-12-13 |
Дата публикации | 2020-12-13 |
Рейтинг | 4.05/5 Всего 65 оценок |
Разработчик | minecursorsproject |
Электронная почта | [email protected] |
Тип оплаты | free |
URL страницы политики конфиденциальности | https://coolcursors.store/mc/privacy |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Mine-Craft Cursors", "description": "Replaces the standard mouse cursor.", "version": "1.0.0", "browser_action": { "default_popup": "popup.html" }, "icons": { "128": "img\/icon.png" }, "background": { "scripts": [ "background_s.js" ] }, "content_scripts": [ { "js": [ "content_s.js" ], "matches": [ "*:\/\/*\/*" ], "all_frames": true, "run_at": "document_start" } ], "permissions": [ "storage", "tabs", "*:\/\/*\/*" ] } |