chore: add clipper extension package (#2281)
This commit is contained in:
7
packages/clipper/src/popup/globals.js
Normal file
7
packages/clipper/src/popup/globals.js
Normal file
@@ -0,0 +1,7 @@
|
||||
window.defaultSyncServer = 'https://api.standardnotes.com'
|
||||
window.defaultFilesHost = 'https://files.standardnotes.com'
|
||||
window.enabledUnfinishedFeatures = false
|
||||
window.websocketUrl = 'wss://sockets.standardnotes.com'
|
||||
window.purchaseUrl = 'https://standardnotes.com/purchase'
|
||||
window.plansUrl = 'https://standardnotes.com/plans'
|
||||
window.dashboardUrl = 'https://standardnotes.com/dashboard'
|
||||
26
packages/clipper/src/popup/index.html
Normal file
26
packages/clipper/src/popup/index.html
Normal file
@@ -0,0 +1,26 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta content="IE=edge" http-equiv="X-UA-Compatible" />
|
||||
<meta content="viewport-fit=cover, width=device-width, initial-scale=1" name="viewport" />
|
||||
<meta name="theme-color" content="#ffffff" />
|
||||
|
||||
<title>Standard Notes</title>
|
||||
|
||||
<script src="./globals.js"></script>
|
||||
|
||||
<script src="../web/app.js" debug="false"></script>
|
||||
<link rel="stylesheet" media="all" href="../web/app.css" debug="false" />
|
||||
|
||||
<style>
|
||||
html,
|
||||
body {
|
||||
min-width: 350px;
|
||||
max-width: 350px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body></body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user