2021-05-12 14:32:11
chrome擴充套件開發:[3]browser Action
2019-12-19 12:02:54
接上文,介紹 browser Action,演示製作好的browser Action範例
1
browser Action是什麼?chromew文件的解釋是:
Use browser actions to put icons in the main Google Chrome toolbar, to the right of the address bar. In addition to its icon, a browser action can also have a tooltip, a badge, and a popup.
2
不過,初學者不用糾結詳細的含義,可以簡單的將browser Action理解為視窗右上角的圖示+點選圖示後的彈出視窗。
3
在後台,browser Action 包含三個部分的:manifest.json裡的說明、彈出視窗(html、js、css)、圖示。
4
default_icon 表示的是圖示檔案的名稱
default_popup 表示的是彈出視窗的檔名。
相關文章