electron/docs-translations/zh-TW/tutorial/using-pepper-flash-plugin.md

46 lines
1.5 KiB
Markdown
Raw Normal View History

# 使用 Pepper Flash 外掛
2016-01-28 10:20:39 +00:00
Electron 現在支援 Pepper Flash 外掛,要在 Electron 中使用 Pepper Flash 外掛,你應該手動指定 Pepper Flash 外掛的位置,並在你的應用程式中啟用它。
2016-01-28 10:20:39 +00:00
## 準備一份 Flash 外掛
2016-01-28 10:20:39 +00:00
2016-06-18 13:26:26 +00:00
在 macOS 和 Linux 上Pepper Flash 外掛的細節可以透過查看 Chrome 瀏覽器中的 `chrome://plugins` 來得知,它的位置和版本對於 Electron 的 Pepper Flash 支援都有很大的幫助,你可以把它複製一份到別的位置。
2016-01-28 10:20:39 +00:00
## 加入 Electron 開關
2016-01-28 10:20:39 +00:00
你可以直接加入 `--ppapi-flash-path``ppapi-flash-version`
Electron 命定列或是在應用程式的 ready 事件之前使用 `app.commandLine.appendSwitch` 方法,並且加入 `browser-window``plugins` 開關。
例如:
2016-01-28 10:20:39 +00:00
```javascript
// 指定 Flash 路徑
// Windows 中可能是 /path/to/pepflashplayer.dll
2016-06-18 13:26:26 +00:00
// macOS 中 /path/to/PepperFlashPlayer.plugin
// Linux 中 /path/to/libpepflashplayer.so
app.commandLine.appendSwitch('ppapi-flash-path', '/path/to/libpepflashplayer.so')
2016-01-28 10:20:39 +00:00
// 指定 Flash 版本, 例如 v17.0.0.169
app.commandLine.appendSwitch('ppapi-flash-version', '17.0.0.169')
2016-01-28 10:20:39 +00:00
app.on('ready', function () {
2016-01-28 10:20:39 +00:00
mainWindow = new BrowserWindow({
'width': 800,
'height': 600,
'web-preferences': {
'plugins': true
}
})
2016-10-03 22:48:04 +00:00
mainWindow.loadURL(`file://${__dirname}/index.html`)
2016-01-28 10:20:39 +00:00
// Something else
})
2016-01-28 10:20:39 +00:00
```
## 在一個 `<webview>` Tag 中啟用 Flash 外掛
2016-01-28 10:20:39 +00:00
`plugins` 屬性加入 `<webview>` tag。
2016-01-28 10:20:39 +00:00
```html
<webview src="http://www.adobe.com/software/flash/about/" plugins></webview>
```