スマホをやめれば魚が育つ Chrome

スマホをやめれば魚が育つ Chrome

サイトの閲覧を制限して仕事に集中するための機能拡張です。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "スマホをやめれば魚が育つ Chrome",
  "short_name": "スマやめ",
  "description": "サイトの閲覧を制限して仕事に集中するための機能拡張です。",
  "version": "0.1.2",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_icon": "icon19.png",
    "default_popup": "index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "permissions": [
    "identity",
    "tabs",
    "storage",
    "contextMenus"
  ],
  "web_accessible_resources": [
    "TEST.html",
    "WorkEnd2.wav",
    "Notification.mp3"
  ],
  "content_security_policy": "script-src 'self' https://www.gstatic.com/ https://*.firebaseio.com https://www.googleapis.com  https://apis.google.com ; object-src 'self'",
  "oauth2": {
    "client_id": "310246100150-bdiho9ak4c00r96i9r3uu56mib9rsmnk.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email",
      "https://www.googleapis.com/auth/userinfo.profile"
    ]
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAo0T7SoxVzLiSQ2TrPCoiPYK9bEIsXj8KdrSjLFMoAqaTKkg2aCrTybEEVoNZKXNlPJaAlp26GQj/UskWuReqIxht5GkSt1IwHHnOtkJyxTaj1AVUVoVabqoL2rTj9v4K2PJ8YkiP2oxZY7eopwHeEgBKe2K2u6iCX6rWr3mLnvglQpTRL00RXMtZeC7S/hth6hu8jlE4YV6FoLxW80wxkU4/HrQt++ozEso3hSq9uIr84xKAYYP+6MOreUZP62lcyWKUL+5Hxl5gyzvsv7Vole5Qk++pfZbt0BpfOjdmQrknVqL3W7dnuUjwHzVfESJwmyhH1Nfr8MeOf+kpMOkOzQIDAQAB"
}