2010年3月10日 星期三

如何寫Google chrome extension

1.安裝開發者專用的Google chrome 版本,升級至Dev or Beta build.
路徑如下:

Windows

Download and run the installer for the desired channel:
You'll need to restart Google Chrome to get the update.

2.開始撰寫程式:

#先產生一個檔案夾
#產生一個內容如下的檔案,並命名為 manifest.json
{
  "name": "GTD-Link",
  "version": "1.0",
  "description": "Some GTD link I used.",
  "browser_action": {
    "default_icon": "icon.png",
    "popup": "gtd_menu.html"
  },
  "permissions": [
    "http://api.flickr.com/"
  ]
}
popup:表示點選這個外掛會跳出網頁 gtp_menu.html

3.開起Browser 擴充功能,點選+ 載入  未封裝的程式,選擇剛剛撰寫的檔案
4.載入後,即完成了第一個瀏覽器擴充套件

沒有留言:

Obsidian 插件介紹:Text Generator

Text Generator 是 Obsidian 的一個插件,它可以根據給定的提示自動生成文本。這個插件使用 GPT-3 語言模型,能夠產生類似人類的文本,非常適合編寫故事、文章、電子郵件和其他類型文本。 主要功能: **生成文本:**根據提示生成各種長度的...