RTL-TFS

RTL-TFS

This extension aligns text (history comments, titles, etc) right to left in TFS

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "RTL-TFS",
  "description": "This extension aligns text (history comments, titles, etc) right to left in TFS",
  "version": "1.3",
  "permissions": [
    "activeTab",
    "<all_urls>",
    "storage"
  ],
  "browser_action": {
    "default_icon": "img/icon.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/tfs/*",
        "https://*/tfs/*",
        "http://*/*/tfs/*",
        "https://*/*/tfs/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ]
}