1
0
mirror of https://github.com/chinchang/web-maker.git synced 2025-02-19 20:55:55 +01:00

fix links to new website

This commit is contained in:
Kushagra Gour 2019-03-18 18:48:58 +05:30
parent 9df123dc1e
commit 52849f5b56
7 changed files with 18 additions and 24 deletions

View File

@ -73,11 +73,7 @@ export default class Footer extends Component {
return (
<div id="footer" class="footer">
<div>
<a
href="https://webmakerapp.com/"
target="_blank"
rel="noopener noreferrer"
>
<a href="/" target="_blank" rel="noopener noreferrer">
<div class="logo" />
</a>
&copy;
@ -116,7 +112,7 @@ export default class Footer extends Component {
<a
class="footer__link hint--rounded hint--top-right"
aria-label="Tweet about 'Web Maker'"
href="http://twitter.com/share?url=https://webmakerapp.com/&text=Web Maker - A blazing fast %26 offline web playground! via @webmakerApp&related=webmakerApp&hashtags=web,frontend,playground,offline"
href="http://twitter.com/share?url=https://webmaker.app/&text=Web Maker - A blazing fast %26 offline web playground! via @webmakerApp&related=webmakerApp&hashtags=web,frontend,playground,offline"
target="_blank"
rel="noopener noreferrer"
>

View File

@ -177,11 +177,7 @@ export function HelpModal(props) {
- Ian Johnson
</li>
<li>
<a
target="_blank"
rel="noopener noreferrer"
href="https://webmakerapp.com/"
>
<a target="_blank" rel="noopener noreferrer" href="/">
Web Maker!
</a>{' '}
- whhat!

View File

@ -78,7 +78,7 @@ function Notification({ version, isLatest, ...props }) {
</a>
&nbsp;
<a
href="http://twitter.com/share?url=https://webmakerapp.com/&text=Web Maker - A blazing fast %26 offline web playground! via @webmakerApp&related=webmakerApp&hashtags=web,editor,chrome,extension"
href="http://twitter.com/share?url=https://webmaker.app/&text=Web Maker - A blazing fast %26 offline web playground! via @webmakerApp&related=webmakerApp&hashtags=web,editor,chrome,extension"
target="_blank"
rel="noopener noreferrer"
class="btn"
@ -467,11 +467,11 @@ export function Notifications(props) {
as web app that runs offline just like the extension! Checkout it
out ->
<a
href="https://webmakerapp.com/app/"
href="https://webmaker.app/app/"
target="_blank"
rel="noopener noreferrer"
>
https://webmakerapp.com/app/
https://webmaker.app/app/
</a>
.
</li>

View File

@ -19,11 +19,11 @@ export function OnboardingModal(props) {
</svg>
</div>
<p>
Open Web Maker anytime by visiting{' '}
<a>https://webmakerapp.com/app/</a> - Even when you are offline! It
just works! 😱 <strong>Drag the following bookmarklet</strong> on
your bookmark bar to create a quick access shortcut:
<a class="ml-1 bookmarklet" href="https://webmakerapp.com/app/">
Open Web Maker anytime by visiting <a>https://webmaker.app/app/</a>{' '}
- Even when you are offline! It just works! 😱{' '}
<strong>Drag the following bookmarklet</strong> on your bookmark bar
to create a quick access shortcut:
<a class="ml-1 bookmarklet" href="https://webmaker.app/app/">
<svg width="20" height="20" aria-hidden="true">
<use xlinkHref="#logo" />
</svg>
@ -58,7 +58,8 @@ export function OnboardingModal(props) {
viewBox="0 0 24 24"
>
<use xlinkHref="#settings-icon" />
</svg>) in bottom right of the app.
</svg>
) in bottom right of the app.
</p>
</div>
<div class="onboard-step">
@ -90,7 +91,8 @@ export function OnboardingModal(props) {
rel="noopener noreferrer"
>
Learn how to export/import
</a>.
</a>
.
</p>
<p class="tac">

View File

@ -46,4 +46,4 @@ chrome.runtime.onInstalled.addListener(function callback(details) {
}
});
chrome.runtime.setUninstallURL('https://webmakerapp.com/uninstall/');
chrome.runtime.setUninstallURL('https://webmaker.app/uninstall/');

View File

@ -3,7 +3,7 @@
"version": "3.6.2",
"manifest_version": 2,
"description": "Blazing fast & offline playground for your web experiments",
"homepage_url": "https://webmakerapp.com",
"homepage_url": "https://webmaker.app",
"permissions": ["storage", "tabs", "<all_urls>"],
"optional_permissions": ["downloads"],
"content_security_policy": "script-src 'self' filesystem: http://localhost:* https://localhost:* https://apis.google.com https://ajax.googleapis.com https://code.jquery.com https://cdnjs.cloudflare.com https://unpkg.com https://maxcdn.com https://cdn77.com https://maxcdn.bootstrapcdn.com https://cdn.jsdelivr.net/ https://*.stripe.com/ https://builds.framerjs.com/ https://rawgit.com https://wzrd.in https://www.gstatic.com https://semantic-ui.com https://www.google-analytics.com 'unsafe-eval'; object-src 'self'",

View File

@ -266,7 +266,7 @@ export function writeFile(name, blob, cb) {
if (writeFile.errorCount === 4) {
setTimeout(function() {
alert(
"Oops! Seems like your preview isn't updating. It's recommended to switch to the web app: https://webmakerapp.com/app/.\n\n If you still want to get the extension working, please try the following steps until it fixes:\n - Refresh Web Maker\n - Restart browser\n - Update browser\n - Reinstall Web Maker (don't forget to export all your creations from saved items pane (click the OPEN button) before reinstalling)\n\nIf nothing works, please tweet out to @webmakerApp."
"Oops! Seems like your preview isn't updating. It's recommended to switch to the web app: https://webmaker.app/app/.\n\n If you still want to get the extension working, please try the following steps until it fixes:\n - Refresh Web Maker\n - Restart browser\n - Update browser\n - Reinstall Web Maker (don't forget to export all your creations from saved items pane (click the OPEN button) before reinstalling)\n\nIf nothing works, please tweet out to @webmakerApp."
);
trackEvent('ui', 'writeFileMessageSeen');
}, 1000);