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 service - Google Drive #291

Open
wants to merge 2 commits 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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Binary file added googlecontacts/icon.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
850 changes: 850 additions & 0 deletions googlecontacts/icon.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions googlecontacts/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
// just pass through Franz
module.exports = Franz => Franz;
23 changes: 23 additions & 0 deletions googlecontacts/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"name": "googlecontacts",
"version": "1.0.0",
"description": "Google's online contacts.",
"main": "index.js",
"author": "yves-s <yves.schleich@gmail.com>",
"license": "MIT",
"config": {
"serviceURL": "https://contacts.google.com/",
"serviceName": "Google Contacts",
"message": "Google's online contacts.",
"popup": [],
"hasNotificationSound": false,
"hasIndirectMessages": false,
"hasTeamID": false,
"customURL": false,
"hostedOnly": false,
"webviewOptions": {
"disablewebsecurity": ""
},
"openDevTools": false
}
}
3 changes: 3 additions & 0 deletions googlecontacts/webview.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = (Franz, options) => {

}
Binary file added googledrive/icon.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
924 changes: 924 additions & 0 deletions googledrive/icon.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions googledrive/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
// just pass through Franz
module.exports = Franz => Franz;
23 changes: 23 additions & 0 deletions googledrive/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"name": "googledrive",
"version": "1.0.0",
"description": "Google's online storage.",
"main": "index.js",
"author": "yves-s <yves.schleich@gmail.com>",
"license": "MIT",
"config": {
"serviceURL": "https://drive.google.com/drive/my-drive",
"serviceName": "Google Drive",
"message": "Google's online storage.",
"popup": [],
"hasNotificationSound": false,
"hasIndirectMessages": false,
"hasTeamID": false,
"customURL": false,
"hostedOnly": false,
"webviewOptions": {
"disablewebsecurity": ""
},
"openDevTools": false
}
}
3 changes: 3 additions & 0 deletions googledrive/webview.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = (Franz, options) => {

}