Prisc!

Prisc!

「プリスク!」はワンクリックでブラウザ画面スクリーンショットを撮るChrome拡張です。トリミングなど最低限の編集、およびTwitterへの画像付き投稿ができます。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Prisc!",
  "version": "0.2.5",
  "description": "「プリスク!」はワンクリックでブラウザ画面スクリーンショットを撮るChrome拡張です。トリミングなど最低限の編集、およびTwitterへの画像付き投稿ができます。",
  "permissions": [
    "https://api.twitter.com/*",
    "activeTab",
    "downloads"
  ],
  "web_accessible_resources": [
    "chrome_ex_oauth.html*"
  ],
  "icons": {
    "48": "asset/img/icon/icon.48.png",
    "128": "asset/img/icon/icon.128.png"
  },
  "browser_action": {
    "default_icon": "asset/img/icon/icon.128.png"
  },
  "background": {
    "persistent": true,
    "scripts": [
      "oauth_lib/chrome_ex_oauth.js",
      "oauth_lib/chrome_ex_oauthsimple.js",
      "build/app.js"
    ]
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+S",
        "windows": "Ctrl+Shift+S",
        "mac": "Command+Shift+S",
        "chromeos": "Ctrl+Shift+S",
        "linux": "Ctrl+Shift+S"
      }
    }
  },
  "options_page": "asset/html/app.html?view=Options"
}