Crank for Rubygems
Chrome extension to make working with RubyGems more productive
Qu'est-ce que Crank for Rubygems ?
Crank for Rubygems est une extension Chrome développée par NARKOZ, et sa fonction principale est "Chrome extension to make working with RubyGems more productive".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Crank for Rubygems
Téléchargez les fichiers d'extension Crank for Rubygems au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
★ 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
Informations de Base sur l'Extension
Nom | Crank for Rubygems |
ID | aeekfpaigbeblmpeliiomcamnipcglii |
URL Officiel | https://chromewebstore.google.com/detail/crank-for-rubygems/aeekfpaigbeblmpeliiomcamnipcglii |
Description | Chrome extension to make working with RubyGems more productive |
Taille du Fichier | 28.82 KB |
Nombre d'Installations | 26 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2015-01-10 |
Date de Publication | 2015-01-10 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | NARKOZ |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/NARKOZ/crank-for-rubygems |
URL de la Page d'Aide | https://github.com/NARKOZ/crank-for-rubygems/issues |
Langues Prises en Charge | 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 } |