Compare commits

...

2 Commits

Author SHA1 Message Date
mickie fa52828641 Fix minor issues 2021-04-06 14:11:18 -05:00
mickie a0fea69ce4 Fix README.md, screenshots. Add web-ext-config.js 2021-04-06 13:45:11 -05:00
8 changed files with 14 additions and 21 deletions

View File

@ -1,4 +1,4 @@
# ![img](/img/logo.png) Share Freedom - browser extension
# ![img](/src/img/logo.png) Share Freedom - browser extension
Share the current tab on the [fediverse](https://fediverse.party/).
@ -31,11 +31,13 @@ Supported services/protocols:
## Build
You need Node.js/npm to use the command line tool web-ext
You need Node.js/npm
`npm install` then
`npm install --global web-ext`
then, use the next command to generate the package (.zip file)
Use the next command to generate the package (.zip file)
`web-ext build`

View File

@ -4,7 +4,7 @@
"name": "Share Freedom",
"description": "share the current tab on the fediverse",
"version": "2.1.3",
"author": "Mickie",
"author": "Miguel",
"background": {
"scripts": ["src/js/background.js"],

View File

@ -6,19 +6,6 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="../css/fork-awesome.css" rel="stylesheet">
<link href="../css/main.css" rel="stylesheet">
<!-- <meta name="viewport" content="width=device-width, initial-scale=1">
<base target=""_blank />
<link rel="stylesheet" href="../css/bootstrap.css">
<link rel="stylesheet" href="../css/fork-awesome.css">
<link rel="stylesheet" href="../css/style.css">
<style>
body {
background-image: url('../img/wallpaper.png');
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
}
</style> -->
</head>
<body class="bg-fixed px-2 py-3" style="background-image: url('../img/wallpaper.png')">
@ -29,7 +16,7 @@
<a href="https://fosstodon.org/@yarmo/101907879701964911">Yarmo</a>
</div>
</div> -->
<div class="text-5xl px-2 py-4 text-blue-400">Settings</div>
<div class="text-5xl px-2 py-4 text-blue-400">Set your instance(s)</div>
<form class="grid gap-5">
<div class="flex">
<span class="span-custom">Pleroma:</span>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 MiB

After

Width:  |  Height:  |  Size: 310 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 MiB

After

Width:  |  Height:  |  Size: 256 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 310 KiB

After

Width:  |  Height:  |  Size: 241 KiB

View File

@ -8,9 +8,6 @@ const host = {
pleromaDefault: `https://blob.cat`,
socialhomeDefault: `https://socialhome.network`,
xmppDefault: `https://suchat.org`,
// shortcut command
shortcutDefault: `Ctrl+Shift+U`,
}

7
web-ext-config.js Normal file
View File

@ -0,0 +1,7 @@
module.exports = {
ignoreFiles: [
"src/img/screenshot-*.png",
"src/img/ice-cream.png",
"src/img/badge-amo.png"
],
};