Skip to content

Commit e7edce8

Browse files
authored
Merge pull request #2 from nelsonr/v1.3.1
V1.3.1
2 parents 4c0e9d6 + 324f072 commit e7edce8

23 files changed

+634
-633
lines changed

.eslintrc.json

+53-1
Original file line numberDiff line numberDiff line change
@@ -21,21 +21,73 @@
2121
"@typescript-eslint"
2222
],
2323
"rules": {
24+
"array-bracket-newline": [
25+
"error",
26+
"consistent"
27+
],
28+
"array-bracket-spacing": [
29+
"error",
30+
"always"
31+
],
32+
"array-element-newline": [
33+
"error",
34+
"consistent"
35+
],
2436
"indent": [
37+
"warn",
38+
4,
39+
{
40+
"ignoredNodes": [
41+
"VariableDeclaration[declarations.length=0]"
42+
]
43+
}
44+
],
45+
"keyword-spacing": [
2546
"error",
26-
4
47+
{
48+
"before": true
49+
}
2750
],
2851
"linebreak-style": [
2952
"error",
3053
"unix"
3154
],
55+
"newline-before-return": "error",
56+
"object-curly-newline": [
57+
"error",
58+
{
59+
"multiline": true
60+
}
61+
],
62+
"object-curly-spacing": [
63+
"error",
64+
"always"
65+
],
66+
"object-property-newline": "error",
67+
"padding-line-between-statements": [
68+
"error",
69+
{
70+
"blankLine": "always",
71+
"next": "block-like",
72+
"prev": "*"
73+
},
74+
{
75+
"blankLine": "always",
76+
"next": "*",
77+
"prev": "block-like"
78+
}
79+
],
3280
"quotes": [
3381
"error",
3482
"double"
3583
],
3684
"semi": [
3785
"error",
3886
"always"
87+
],
88+
"space-before-function-paren": [
89+
"error",
90+
"always"
3991
]
4092
},
4193
"settings": {

.vscode/settings.json

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
11
{
2-
"files.eol": "\n"
2+
"files.eol": "\n",
3+
"eslint.enable": true,
4+
"eslint.run": "onSave",
5+
"editor.codeActionsOnSave": {
6+
"source.fixAll": true,
7+
"source.organizeImports": true
8+
}
39
}

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## <img src="https://github.com/nelsonr/super_css_inject/raw/master/src/icons/48x48.png" width="24" /> Super CSS Inject
1+
## <img src="https://github.com/nelsonr/super_css_inject/raw/master/dist/icons/48x48.png" width="24" /> Super CSS Inject
22

33
Keep multiple stylesheets ready to inject and change on the fly. Works with **LiveReload**.
44
Compatible with Chrome and Firefox.

dist/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Super CSS Inject",
3-
"version": "1.3.0",
3+
"version": "1.3.1",
44
"description": "Keep multiple stylesheets ready to inject and change on the fly!",
55
"manifest_version": 3,
66
"permissions": ["activeTab", "storage"],

src/Messages.ts

-94
This file was deleted.

src/Stylesheet.ts

-11
This file was deleted.

src/SuperCSSInject.ts

+72-26
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,92 @@
11
import { env } from "./utils";
22

3-
function injectStylesheets(urlList: string[]) {
4-
urlList.forEach((url) => {
5-
if (!document.querySelector(`link[href="${url}"]`)) {
6-
const link = document.createElement("link");
7-
link.rel = "stylesheet";
8-
link.type = "text/css";
9-
link.href = url;
10-
link.classList.add("SuperCSSInject");
11-
12-
document.head.appendChild(link);
3+
function main () {
4+
env.runtime.onMessage.addListener((message) => {
5+
if (message.action == "inject") {
6+
updateInjectedStylesheets(message.urlList);
137
}
148
});
9+
10+
env.runtime.sendMessage({ action: "load" });
11+
maintainStylesheetsOrder();
1512
}
1613

17-
function clearStylesheets(url: string) {
14+
function updateInjectedStylesheets (urlList: string[]) {
1815
const links: NodeListOf<HTMLLinkElement> = document.querySelectorAll("link.SuperCSSInject");
19-
20-
if (links.length > 0) {
21-
links.forEach((link: HTMLLinkElement) => {
22-
if (link.href === url) {
23-
link.remove();
16+
const currentList = Array.from(links).map((link) => link.href);
17+
18+
if (currentList.length > urlList.length) {
19+
for (const url of currentList) {
20+
if (!urlList.includes(url)) {
21+
clearStylesheet(url);
2422
}
25-
});
23+
}
24+
} else {
25+
for (const url of urlList) {
26+
if (!currentList.includes(url)) {
27+
injectStylesheet(url);
28+
}
29+
}
2630
}
2731
}
2832

29-
function main() {
30-
env.runtime.onMessage.addListener((message) => {
31-
if (message.action == "inject") {
32-
injectStylesheets(message.urlList);
33-
}
33+
function clearStylesheet (url: string) {
34+
const link = document.querySelector(`link[href="${url}"].SuperCSSInject`);
35+
link && link.remove();
36+
}
37+
38+
function injectStylesheet (url: string) {
39+
const link = createLinkElement(url);
40+
document.head.append(link);
41+
}
3442

35-
if (message.action == "clear") {
36-
clearStylesheets(message.url);
43+
function createLinkElement (url: string) {
44+
const link = document.createElement("link");
45+
46+
link.rel = "stylesheet";
47+
link.type = "text/css";
48+
link.href = url;
49+
link.classList.add("SuperCSSInject");
50+
51+
return link;
52+
}
53+
54+
/**
55+
* Make sure the injected stylesheets are always placed last on the DOM
56+
*
57+
* This handles SPAs where is common for additional assets to be loaded after
58+
* the initial page load and ensures the injected styles retain priority.
59+
*/
60+
function maintainStylesheetsOrder () {
61+
const observer = new MutationObserver(() => {
62+
const injectedLinks: NodeListOf<HTMLLinkElement> = document.head.querySelectorAll("link.SuperCSSInject");
63+
64+
if (injectedLinks.length > 0) {
65+
const links: NodeListOf<HTMLLinkElement> = document.head.querySelectorAll("link[rel='stylesheet']");
66+
const lastLink: HTMLLinkElement = links[links.length - 1];
67+
const isInjectedStylesheetLast = lastLink.className === "SuperCSSInject";
68+
69+
if (!isInjectedStylesheetLast) {
70+
observer.disconnect();
71+
moveInjectedStylesheets();
72+
}
3773
}
3874
});
3975

40-
env.runtime.sendMessage({ action: "pageLoad" });
76+
observer.observe(document.head, { childList: true });
77+
}
78+
79+
function moveInjectedStylesheets () {
80+
const links: NodeListOf<HTMLLinkElement> = document.head.querySelectorAll("link.SuperCSSInject");
81+
82+
for (const link of links) {
83+
document.head.appendChild(link);
84+
}
85+
86+
maintainStylesheetsOrder();
4187
}
4288

4389
window.addEventListener("load", main);
4490

4591
// This is just to make the TS compiler happy
46-
export {};
92+
export { };

0 commit comments

Comments
 (0)