Follow Cursor
Adds custom mouse pointer that rotate in he way that you steer it
Что такое Follow Cursor?
Follow Cursor - это расширение Chrome, разработанное thelidcer, и его основная функция - "Adds custom mouse pointer that rotate in he way that you steer it".
Снимки экрана расширения
Скачать файл CRX расширения Follow Cursor
Скачайте файлы расширений Follow Cursor в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Adds custom mouse pointer that rotates in the way you steer it Основная информация о расширении
| Название | |
| ID | dphiobephcfbbeeimmefecgjeaimkdhk |
| Официальный URL | https://chrome.google.com/webstore/detail/follow-cursor/dphiobephcfbbeeimmefecgjeaimkdhk |
| Описание | Adds custom mouse pointer that rotate in he way that you steer it |
| Размер файла | 41.58 KB |
| Количество установок | 43 |
| Текущая Версия | 1.0.1 |
| Последнее Обновление | 2020-10-05 |
| Дата публикации | 2020-10-05 |
| Рейтинг | 2.33/5 Всего 3 оценок |
| Разработчик | thelidcer |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Follow Cursor",
"icons": {
"48": "assets\/images\/icon_48.png",
"128": "assets\/images\/icon_128.png"
},
"web_accessible_resources": [
"assets\/css\/bootstrap.css",
"assets\/css\/cursor.css",
"assets\/css\/popup.css",
"assets\/images\/icon_128.png",
"assets\/images\/icon_48.png",
"assets\/images\/normal.svg"
],
"permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"storage",
"tabs"
],
"background": {
"scripts": [
"assets\/scripts\/background.js"
]
},
"browser_action": {
"default_icon": "assets\/images\/icon_48.png",
"default_popup": "assets\/html\/popup.html"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"assets\/scripts\/content.js"
],
"css": [
"assets\/css\/cursor.css"
],
"run_at": "document_end"
}
],
"version": "1.0.1",
"description": "Adds custom mouse pointer that rotate in he way that you steer it"
} | |