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".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Crank for Rubygems
قم بتنزيل ملفات الامتداد Crank for Rubygems بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
★ 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 |
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 |
عنوان صفحة المساعدة | 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 } |