Crank for Rubygems

Chrome extension to make working with RubyGems more productive

O que é Crank for Rubygems?

Crank for Rubygems é uma extensão do Chrome desenvolvida por NARKOZ, e sua principal característica é "Chrome extension to make working with RubyGems more productive".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Crank for Rubygems

Baixe arquivos de extensão Crank for Rubygems 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

                        ★ Navigate to ruby gem's GitHub or Rubygems.org page. 

Open 'Gemfile' or '.gemspec' file on GitHub, then click on any gem name. You will be redirected to the gem project page.

★ Open ruby gem page in RubyGems.org from the context menu. 

Highlight the ruby gem name on any page with the mouse, then right-click and select "Open in RubyGems.org". RubyGems page will open in a new tab.

The source code is available here: https://github.com/NARKOZ/crank-for-rubygems                    

Informações Básicas da Extensão

Nome Crank for Rubygems Crank for Rubygems
ID aeekfpaigbeblmpeliiomcamnipcglii
URL Oficial https://chromewebstore.google.com/detail/crank-for-rubygems/aeekfpaigbeblmpeliiomcamnipcglii
Descrição Chrome extension to make working with RubyGems more productive
Tamanho do Arquivo 28.82 KB
Contagem de Instalações 26
Versão Atual 1.1
Última Atualização 2015-01-10
Data de Publicação 2015-01-10
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor NARKOZ
Tipo de Pagamento free
Site da Extensão https://github.com/NARKOZ/crank-for-rubygems
URL da Página de Ajuda https://github.com/NARKOZ/crank-for-rubygems/issues
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Crank for Rubygems",
    "description": "Chrome extension to make working with RubyGems more productive",
    "homepage_url": "https:\/\/github.com\/NARKOZ\/crank-for-rubygems",
    "version": "1.1",
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "inject.js"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "manifest_version": 2
}