Star Wars cursor

Custom Star Wars cursor for your chrome

O que é Star Wars cursor?

Star Wars cursor é uma extensão do Chrome desenvolvida por LSP, e sua principal característica é "Custom Star Wars cursor for your chrome".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Star Wars cursor

Baixe arquivos de extensão Star Wars cursor no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        Replaces the standard mouse cursor.
Star Wars cursor, choose your own cursor style. 
Just click on the cursor you like and it will replace the default cursor.

-------------------
Installation:
Download this extension, after installing it, click on the icon that appears on the toolbar in the tab, click on the icon in the toolbar and select the cursors you like and then update active tab.
After installing this extension, refresh the previously opened tab if you want to use it on this page.
-------------------
If you have any questions about our Star Wars cursor extension or just want to give us some feedback, feel free to send us a message or write a review! 
-------------------
Made with ❤️                    

Informações Básicas da Extensão

Nome Star Wars cursor Star Wars cursor
ID nocnnklalamnfikpjneapeommdolobki
URL Oficial https://chromewebstore.google.com/detail/star-wars-cursor/nocnnklalamnfikpjneapeommdolobki
Descrição Custom Star Wars cursor for your chrome
Tamanho do Arquivo 2.57 MB
Contagem de Instalações 585
Versão Atual 1.0.3
Última Atualização 2022-11-15
Data de Publicação 2022-11-14
Desenvolvedor LSP
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Star Wars cursor",
    "description": "Custom Star Wars cursor for your chrome",
    "version": "1.0.3",
    "action": {
        "default_popup": "popup.html",
        "default_title": "Star Wars cursor"
    },
    "icons": {
        "16": "img\/logo-small-16.png",
        "32": "img\/logo-small-32.png",
        "48": "img\/logo-small-48.png",
        "128": "img\/logo-small-128.png"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "app\/common.js",
                "cur\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "app\/common.js",
                "app\/content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "app\/background.js",
        "type": "module"
    },
    "permissions": [
        "storage",
        "notifications",
        "webNavigation"
    ]
}