Starmark

Starmark is a Chrome extension that converts the repos you've starred on GitHub into bookmarks. Also, anytime you star a repo, a…

O que é Starmark?

Starmark é uma extensão do Chrome desenvolvida por ryansworks, e sua principal característica é "Starmark is a Chrome extension that converts the repos you've starred on GitHub into bookmarks. Also, anytime you star a repo, a…".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Starmark

Baixe arquivos de extensão Starmark 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

                        Starmark is a Chrome extension that converts the repos you've starred on GitHub into bookmarks. Also, anytime you star a repo, a bookmark will be added into the "github-stars" folder in your main Bookmarks.                    

Informações Básicas da Extensão

Nome Starmark Starmark
ID bkobkbkmhkmlmdolbhnmmmhnccdgaebk
URL Oficial https://chromewebstore.google.com/detail/starmark/bkobkbkmhkmlmdolbhnmmmhnccdgaebk
Descrição Starmark is a Chrome extension that converts the repos you've starred on GitHub into bookmarks. Also, anytime you star a repo, a…
Tamanho do Arquivo 76.11 KB
Contagem de Instalações 61
Versão Atual 0.0.1
Última Atualização 2019-03-08
Data de Publicação 2019-03-08
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor ryansworks
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Starmark",
    "version": "0.0.1",
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "icon-16.png",
        "default_title": "Starmark"
    },
    "icons": {
        "128": "icon-128.png",
        "16": "icon-16.png",
        "48": "icon-48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "lodash.min.js",
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "https:\/\/github.com\/*",
        "tabs",
        "bookmarks"
    ]
}