Follow Cursor
Adds custom mouse pointer that rotate in he way that you steer it
Co to jest Follow Cursor?
Follow Cursor to rozszerzenie Chrome opracowane przez thelidcer, a jego główną funkcją jest „Adds custom mouse pointer that rotate in he way that you steer it”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Follow Cursor
Pobierz pliki rozszerzeń Follow Cursor w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Adds custom mouse pointer that rotates in the way you steer it
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | dphiobephcfbbeeimmefecgjeaimkdhk |
Oficjalny URL | https://chrome.google.com/webstore/detail/follow-cursor/dphiobephcfbbeeimmefecgjeaimkdhk |
Opis | Adds custom mouse pointer that rotate in he way that you steer it |
Rozmiar pliku | 41.58 KB |
Liczba instalacji | 43 |
Aktualna Wersja | 1.0.1 |
Ostatnia Aktualizacja | 2020-10-05 |
Data Publikacji | 2020-10-05 |
Ocena | 2.33/5 Łącznie 3 Oceny |
Deweloper | thelidcer |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" } |