Crank for Rubygems

Chrome extension to make working with RubyGems more productive

Crank for Rubygemsคืออะไร?

Crank for Rubygems เป็นส่วนขยายของ Chrome ที่พัฒนาโดย NARKOZ และคุณลักษณะหลักของมันคือ "Chrome extension to make working with RubyGems more productive"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Crank for Rubygems

ดาวน์โหลดไฟล์ส่วนขยาย 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
}