Crank for Rubygems
Chrome extension to make working with RubyGems more productive
What is Crank for Rubygems?
Crank for Rubygems is a Chrome extension developed by NARKOZ, and its main feature is "Chrome extension to make working with RubyGems more productive".
Extension Screenshots
Download Crank for Rubygems Extension CRX File
Download Crank for Rubygems extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
★ 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
Extension Basic Information
Name | Crank for Rubygems |
ID | aeekfpaigbeblmpeliiomcamnipcglii |
Official URL | https://chromewebstore.google.com/detail/crank-for-rubygems/aeekfpaigbeblmpeliiomcamnipcglii |
Description | Chrome extension to make working with RubyGems more productive |
File Size | 28.82 KB |
Installation Count | 26 |
Current Version | 1.1 |
Last Updated | 2015-01-10 |
Publish Date | 2015-01-10 |
Rating | 5.00/5 Total 1 Ratings |
Developer | NARKOZ |
Payment Type | free |
Extension Website | https://github.com/NARKOZ/crank-for-rubygems |
Help Page URL | https://github.com/NARKOZ/crank-for-rubygems/issues |
Supported Languages | 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 } |