Skip to content

Commit 2410a23

Browse files
chore: update artifacts [skip ci]
1 parent 03400e2 commit 2410a23

34 files changed

Lines changed: 166 additions & 1 deletion

File tree

public/ai-chatgpt/src/content/scripts.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,11 @@ chrome.runtime.onMessage.addListener((message, _sender, sendResponse) => {
3333
}
3434
})
3535

36+
/**
37+
* Extension.js content_script entrypoint. The framework calls this on
38+
* injection and calls the returned function on HMR/teardown to clean up.
39+
* Do not invoke it yourself.
40+
*/
3641
export default function initial() {
3742
const rootDiv = document.createElement('div')
3843
rootDiv.setAttribute('data-extension-root', 'true')

public/ai-claude/src/content/scripts.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,11 @@ chrome.runtime.onMessage.addListener((message, _sender, sendResponse) => {
3333
}
3434
})
3535

36+
/**
37+
* Extension.js content_script entrypoint. The framework calls this on
38+
* injection and calls the returned function on HMR/teardown to clean up.
39+
* Do not invoke it yourself.
40+
*/
3641
export default function initial() {
3742
const rootDiv = document.createElement('div')
3843
rootDiv.setAttribute('data-extension-root', 'true')

public/ai-gemini/src/content/scripts.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,11 @@ chrome.runtime.onMessage.addListener((message, _sender, sendResponse) => {
3333
}
3434
})
3535

36+
/**
37+
* Extension.js content_script entrypoint. The framework calls this on
38+
* injection and calls the returned function on HMR/teardown to clean up.
39+
* Do not invoke it yourself.
40+
*/
3641
export default function initial() {
3742
const rootDiv = document.createElement('div')
3843
rootDiv.setAttribute('data-extension-root', 'true')

public/ai-perplexity/src/content/scripts.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,11 @@ chrome.runtime.onMessage.addListener((message, _sender, sendResponse) => {
3333
}
3434
})
3535

36+
/**
37+
* Extension.js content_script entrypoint. The framework calls this on
38+
* injection and calls the returned function on HMR/teardown to clean up.
39+
* Do not invoke it yourself.
40+
*/
3641
export default function initial() {
3742
const rootDiv = document.createElement('div')
3843
rootDiv.setAttribute('data-extension-root', 'true')

public/content-css-modules/src/content/scripts.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ import {
88
} from './styles.module.css'
99
const logo = iconUrl
1010

11+
/**
12+
* Extension.js content_script entrypoint. The framework calls this on
13+
* injection and calls the returned function on HMR/teardown to clean up.
14+
* Do not invoke it yourself.
15+
*/
1116
export default function initial() {
1217
const rootDiv = document.createElement('div')
1318
rootDiv.setAttribute('data-extension-root', 'true')

public/content-custom-font/src/content/scripts.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
console.log('[From the page context] Hello from content_scripts!')
2+
/**
3+
* Extension.js content_script entrypoint. The framework calls this on
4+
* injection and calls the returned function on HMR/teardown to clean up.
5+
* Do not invoke it yourself.
6+
*/
27
export default function initial() {
38
const rootDiv = document.createElement('div')
49
rootDiv.setAttribute('data-extension-root', 'true')

public/content-env/src/content/scripts.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
console.log('[From the page context] Hello from content_scripts!')
22
import iconUrl from '../images/icon.png'
33
const logo = iconUrl
4+
/**
5+
* Extension.js content_script entrypoint. The framework calls this on
6+
* injection and calls the returned function on HMR/teardown to clean up.
7+
* Do not invoke it yourself.
8+
*/
49
export default function initial() {
510
const rootDiv = document.createElement('div')
611
rootDiv.setAttribute('data-extension-root', 'true')

public/content-less-modules/src/content/scripts.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ import {
77
content_description
88
} from './styles.module.less'
99
const logo = iconUrl
10+
/**
11+
* Extension.js content_script entrypoint. The framework calls this on
12+
* injection and calls the returned function on HMR/teardown to clean up.
13+
* Do not invoke it yourself.
14+
*/
1015
export default function initial() {
1116
const rootDiv = document.createElement('div')
1217
rootDiv.setAttribute('data-extension-root', 'true')

public/content-less/src/content/scripts.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
console.log('[From the page context] Hello from content_scripts!')
22
import iconUrl from '../images/icon.png'
33
const logo = iconUrl
4+
/**
5+
* Extension.js content_script entrypoint. The framework calls this on
6+
* injection and calls the returned function on HMR/teardown to clean up.
7+
* Do not invoke it yourself.
8+
*/
49
export default function initial() {
510
const rootDiv = document.createElement('div')
611
rootDiv.setAttribute('data-extension-root', 'true')

public/content-main-world/src/content/scripts.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ import iconUrl from '../images/icon.png'
33
import {createBadge} from './utils/create-badge.js'
44
const logo = iconUrl
55

6+
/**
7+
* Extension.js content_script entrypoint. The framework calls this on
8+
* injection and calls the returned function on HMR/teardown to clean up.
9+
* Do not invoke it yourself.
10+
*/
611
export default function initial() {
712
// Set a window property to prove we're in MAIN world
813
window.__EXTJS_MAIN_WORLD_ACTIVE = true

0 commit comments

Comments
 (0)