ツイッター(twitter)らくらくライフ

ツイッター(twitter)らくらくライフ

アイコンをクリックすると現在開いてるページをツイート出来ます(ツイートボタンがないWEBページも簡単にツイート!!)テキストを選択して→右クリックすると、選択した文字を引用してツイートできます。おすすめユーザーの非表示・トレンドの非表示設定ができます。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "ツイッター(twitter)らくらくライフ",
  "short_name": "Twitterらくらく",
  "version": "1.2.5",
  "minimum_chrome_version": "59",
  "description": "アイコンをクリックすると現在開いてるページをツイート出来ます(ツイートボタンがないWEBページも簡単にツイート!!)テキストを選択して→右クリックすると、選択した文字を引用してツイートできます。おすすめユーザーの非表示・トレンドの非表示設定ができます。",
  "icons": {
    "16": "img/a16.png",
    "32": "img/a32.png",
    "48": "img/a48.png",
    "128": "img/a128.png"
  },
  "homepage_url": "https://allis.jp/",
  "permissions": [
    "tabs",
    "contextMenus"
  ],
  "web_accessible_resources": [
    "img/a16.png",
    "img/a32.png"
  ],
  "browser_action": {
    "default_icon": {
      "19": "img/a16.png",
      "38": "img/a32.png"
    },
    "default_title": "このページをツイートする"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "matches": [
        "*://twitter.com/*"
      ],
      "js": [
        "js/jquery.js",
        "func.js",
        "cs_tw.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "background": {
    "scripts": [
      "func.js",
      "background.js"
    ],
    "persistent": true
  },
  "options_page": "options/options.html"
}