ask-answerable

Ask.fm の回答をしやすくする拡張
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "ask-answerable",
  "version": "1.1.0",
  "description": "Ask.fm の回答をしやすくする拡張",
  "icons": {
    "128": "icons/128.png"
  },
  "permissions": [
    "https://ask.fm/",
    "http://ask.fm/"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://ask.fm/account/questions"
      ],
      "js": [
        "js/jquery.min.js",
        "js/answer.js"
      ]
    }
  ]
}