Crank for Rubygems

Chrome extension to make working with RubyGems more productive

什么是Crank for Rubygems?

Crank for Rubygems是由NARKOZ开发的Chrome扩展程序,该扩展的主要功能是“Chrome extension to make working with RubyGems more productive”。

扩展截图

screenshot

下载Crank for Rubygems扩展crx文件

下载Crank for Rubygems扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        ★ 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                    

扩展基本信息

名称 Crank for Rubygems Crank for Rubygems
ID aeekfpaigbeblmpeliiomcamnipcglii
官方URL https://chromewebstore.google.com/detail/crank-for-rubygems/aeekfpaigbeblmpeliiomcamnipcglii
简介 Chrome extension to make working with RubyGems more productive
文件大小 28.82 KB
安装次数 26
当前版本 1.1
更新时间 2015-01-10
上架时间 2015-01-10
评分 5.00/5 共1次评分
开发者 NARKOZ
付费类型 free
扩展官网 https://github.com/NARKOZ/crank-for-rubygems
帮助页面URL https://github.com/NARKOZ/crank-for-rubygems/issues
支持的语言 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
}