Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add new Franz plugin #285

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions webview/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# WebView Franz Plugin

The minimum requirement to run this plugin is Franz v. 4.0.0. To get the latest version visit [meetfranz.com](http://meetfranz.com)

## Installation
1. To install this plugin, download the `webview` folder.
2. Open the Franz Plugins folder on your machine:
* Mac: `~/Library/Application\ Support/Franz/Plugins/`
* Windows: `%appdata%/Franz/Plugins`
* Linux: `~/.config/Franz/Plugins`
* _Alternatively: Go to your Franz settings page, scroll down to the bottom and you will see an option to "Open the Franz plugin directory"_
3. Copy the `webview` folder into the plugins directory
4. Restart Franz
Binary file added webview/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
537 changes: 537 additions & 0 deletions webview/icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions webview/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = Franz => Franz;
23 changes: 23 additions & 0 deletions webview/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"name": "webview",
"version": "1.0.0",
"description": "Generic web view for Franz",
"main": "index.js",
"author": "Salvatore Cordiano <[email protected]>",
"license": "MIT",
"config": {
"serviceURL": "",
"serviceName": "WebView",
"message": "Add your favourite url as Franz service",
"popup": [],
"hasNotificationSound": true,
"hasTeamID": true,
"customURL": true,
"hostedOnly": true,
"hasIndirectMessages": false,
"webviewOptions": {
"disablewebsecurity": ""
},
"openDevTools": false
}
}
3 changes: 3 additions & 0 deletions webview/webview.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = (Franz, options) => {

}