将页面标题更改为 Facebook 应用程序

Changing page title as a Facebook app

我想知道我是否可以更改我的 application. At the moment the page is entitled "CoolApplicationName on Facebook", I would like to add one word before my application name. For example "(AddedWord) CoolApplicationName on Facebook". Is it possible or page title is imposed by 的页面标题并且它不能更改?

你试过了吗?:

var oldTitle = document.title;
document.title = "(AddedWord) " + oldTitle;

这不是一个编程问题,而是一个settings thing. These are the steps on how to update the title of your 应用程序问题:

  1. 登录 Facebook Developers 站点。
  2. 单击 "My apps"。
  3. 单击应用程序的名称转到其仪表板。
  4. 在左侧菜单中,单击 "Settings"。
  5. 更新 "Display Name" 并添加新词。
  6. 保存更改。

当您重新加载游戏时,页面标题将是您保存的新游戏。