Crank for Rubygems
Chrome extension to make working with RubyGems more productive
Co to jest Crank for Rubygems?
Crank for Rubygems to rozszerzenie Chrome opracowane przez NARKOZ, a jego główną funkcją jest „Chrome extension to make working with RubyGems more productive”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Crank for Rubygems
Pobierz pliki rozszerzeń Crank for Rubygems w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
★ 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
Podstawowe informacje o rozszerzeniu
Nazwa | Crank for Rubygems |
ID | aeekfpaigbeblmpeliiomcamnipcglii |
Oficjalny URL | https://chromewebstore.google.com/detail/crank-for-rubygems/aeekfpaigbeblmpeliiomcamnipcglii |
Opis | Chrome extension to make working with RubyGems more productive |
Rozmiar pliku | 28.82 KB |
Liczba instalacji | 26 |
Aktualna Wersja | 1.1 |
Ostatnia Aktualizacja | 2015-01-10 |
Data Publikacji | 2015-01-10 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | NARKOZ |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/NARKOZ/crank-for-rubygems |
Adres URL Strony Pomocy | https://github.com/NARKOZ/crank-for-rubygems/issues |
Obsługiwane Języki | 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 } |