Crank for Rubygems

Chrome extension to make working with RubyGems more productive

Cos'è Crank for Rubygems?

Crank for Rubygems è un'estensione di Chrome sviluppata da NARKOZ, e la sua funzione principale è "Chrome extension to make working with RubyGems more productive".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Crank for Rubygems

Scarica i file di estensione Crank for Rubygems in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        ★ 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                    

Informazioni di Base sull'Estensione

Nome Crank for Rubygems Crank for Rubygems
ID aeekfpaigbeblmpeliiomcamnipcglii
URL Ufficiale https://chromewebstore.google.com/detail/crank-for-rubygems/aeekfpaigbeblmpeliiomcamnipcglii
Descrizione Chrome extension to make working with RubyGems more productive
Dimensione del File 28.82 KB
Conteggio Installazioni 26
Versione Corrente 1.1
Ultimo Aggiornamento 2015-01-10
Data di Pubblicazione 2015-01-10
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore NARKOZ
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/NARKOZ/crank-for-rubygems
URL della Pagina di Aiuto https://github.com/NARKOZ/crank-for-rubygems/issues
Lingue Supportate 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
}