Follow Cursor
Adds custom mouse pointer that rotate in he way that you steer it
Vad är Follow Cursor?
Follow Cursor är en Chrome-tillägg utvecklad av thelidcer, och dess huvudfunktion är "Adds custom mouse pointer that rotate in he way that you steer it".
Tilläggsskärmbilder
Ladda ner Follow Cursor-förlängningens CRX-fil
Ladda ner Follow Cursor-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Adds custom mouse pointer that rotates in the way you steer it Grundläggande Information om Tillägg
| Namn | |
| ID | dphiobephcfbbeeimmefecgjeaimkdhk |
| Officiell webbadress | https://chrome.google.com/webstore/detail/follow-cursor/dphiobephcfbbeeimmefecgjeaimkdhk |
| Beskrivning | Adds custom mouse pointer that rotate in he way that you steer it |
| Filstorlek | 41.58 KB |
| Antal Installationer | 43 |
| Aktuell Version | 1.0.1 |
| Senast Uppdaterad | 2020-10-05 |
| Publiceringsdatum | 2020-10-05 |
| Betyg | 2.33/5 Totalt 3 Betyg |
| Utvecklare | thelidcer |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | 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"
} | |