CutStar

CutStar

ショートカットキーによる、リンクの実行を可能とするchromeエクステンションです。マウスでリンクをクリックするのにストレスを感じませんか?リンクの実行をショートカット化することでブラウジングをより快適で高速にします。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "CutStar",
  "version": "0.0.3",
  "manifest_version": 2,
  "description": "ショートカットキーによる、リンクの実行を可能とするchromeエクステンションです。マウスでリンクをクリックするのにストレスを感じませんか?リンクの実行をショートカット化することでブラウジングをより快適で高速にします。",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jquery.min.js",
        "script.js"
      ],
      "run_at": "document_start"
    }
  ],
  "browser_action": {
    "default_icon": "icon19.png",
    "default_title": "CutStar Manual",
    "default_popup": "popup.html"
  }
}