mirror of
https://github.com/BetterSEQTA/BetterSEQTA-Plus.git
synced 2026-06-06 03:34:40 +00:00
format: run prettify
This commit is contained in:
@@ -1,9 +1,12 @@
|
||||
import { createManifest } from '../../lib/createManifest'
|
||||
import baseManifest from './manifest.json'
|
||||
import pkg from '../../package.json'
|
||||
import { createManifest } from "../../lib/createManifest";
|
||||
import baseManifest from "./manifest.json";
|
||||
import pkg from "../../package.json";
|
||||
|
||||
export const brave = createManifest({
|
||||
export const brave = createManifest(
|
||||
{
|
||||
...baseManifest,
|
||||
version: pkg.version,
|
||||
description: pkg.description,
|
||||
}, 'brave')
|
||||
},
|
||||
"brave",
|
||||
);
|
||||
|
||||
@@ -1,9 +1,12 @@
|
||||
import { createManifest } from '../../lib/createManifest'
|
||||
import baseManifest from './manifest.json'
|
||||
import pkg from '../../package.json'
|
||||
import { createManifest } from "../../lib/createManifest";
|
||||
import baseManifest from "./manifest.json";
|
||||
import pkg from "../../package.json";
|
||||
|
||||
export const chrome = createManifest({
|
||||
export const chrome = createManifest(
|
||||
{
|
||||
...baseManifest,
|
||||
version: pkg.version,
|
||||
description: pkg.description,
|
||||
}, 'chrome')
|
||||
},
|
||||
"chrome",
|
||||
);
|
||||
|
||||
@@ -1,9 +1,12 @@
|
||||
import { createManifest } from '../../lib/createManifest'
|
||||
import baseManifest from './manifest.json'
|
||||
import pkg from '../../package.json'
|
||||
import { createManifest } from "../../lib/createManifest";
|
||||
import baseManifest from "./manifest.json";
|
||||
import pkg from "../../package.json";
|
||||
|
||||
export const edge = createManifest({
|
||||
export const edge = createManifest(
|
||||
{
|
||||
...baseManifest,
|
||||
version: pkg.version,
|
||||
description: pkg.description,
|
||||
}, 'edge')
|
||||
},
|
||||
"edge",
|
||||
);
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import { createManifest } from '../../lib/createManifest'
|
||||
import baseManifest from './manifest.json'
|
||||
import pkg from '../../package.json'
|
||||
import { createManifest } from "../../lib/createManifest";
|
||||
import baseManifest from "./manifest.json";
|
||||
import pkg from "../../package.json";
|
||||
|
||||
const updatedFirefoxManifest = {
|
||||
...baseManifest,
|
||||
@@ -10,13 +10,13 @@ const updatedFirefoxManifest = {
|
||||
scripts: [baseManifest.background.service_worker],
|
||||
},
|
||||
action: {
|
||||
"default_popup": "interface/index.html#settings",
|
||||
default_popup: "interface/index.html#settings",
|
||||
},
|
||||
browser_specific_settings: {
|
||||
gecko: {
|
||||
id: pkg.author.email,
|
||||
},
|
||||
}
|
||||
}
|
||||
},
|
||||
};
|
||||
|
||||
export const firefox = createManifest(updatedFirefoxManifest, 'firefox')
|
||||
export const firefox = createManifest(updatedFirefoxManifest, "firefox");
|
||||
|
||||
@@ -1,9 +1,12 @@
|
||||
import { createManifest } from '../../lib/createManifest'
|
||||
import baseManifest from './manifest.json'
|
||||
import pkg from '../../package.json'
|
||||
import { createManifest } from "../../lib/createManifest";
|
||||
import baseManifest from "./manifest.json";
|
||||
import pkg from "../../package.json";
|
||||
|
||||
export const opera = createManifest({
|
||||
export const opera = createManifest(
|
||||
{
|
||||
...baseManifest,
|
||||
version: pkg.version,
|
||||
description: pkg.description,
|
||||
}, 'opera')
|
||||
},
|
||||
"opera",
|
||||
);
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import { createManifest } from '../../lib/createManifest'
|
||||
import baseManifest from './manifest.json'
|
||||
import pkg from '../../package.json'
|
||||
import { createManifest } from "../../lib/createManifest";
|
||||
import baseManifest from "./manifest.json";
|
||||
import pkg from "../../package.json";
|
||||
|
||||
const updatedSafariManifest = {
|
||||
...baseManifest,
|
||||
@@ -8,12 +8,12 @@ const updatedSafariManifest = {
|
||||
description: pkg.description,
|
||||
browser_specific_settings: {
|
||||
safari: {
|
||||
strict_min_version: '15.4',
|
||||
strict_max_version: '*',
|
||||
strict_min_version: "15.4",
|
||||
strict_max_version: "*",
|
||||
},
|
||||
// ^^^ https://developer.apple.com/documentation/safariservices/safari_web_extensions/optimizing_your_web_extension_for_safari#3743239
|
||||
// https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/manifest.json/browser_specific_settings#safari_properties
|
||||
},
|
||||
}
|
||||
};
|
||||
|
||||
export const safari = createManifest(updatedSafariManifest, 'safari')
|
||||
export const safari = createManifest(updatedSafariManifest, "safari");
|
||||
|
||||
Reference in New Issue
Block a user