You've already forked bilibili-subtitle
Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
d31c2d7b03 | ||
![]() |
1c5534fc82 |
@@ -1,3 +1 @@
|
||||
VITE_ENV=web-dev
|
||||
|
||||
VITE_EXTENSION_ID=nejipfbcnfhckfpmlgibfommbnahchko
|
@@ -1,4 +1,3 @@
|
||||
NODE_ENV=production
|
||||
|
||||
VITE_ENV=chrome
|
||||
VITE_EXTENSION_ID=bciglihaegkdhoogebcdblfhppoilclp
|
||||
VITE_ENV=chrome
|
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"private": true,
|
||||
"name": "bilibili-subtitle",
|
||||
"version": "1.11.2",
|
||||
"version": "1.11.3",
|
||||
"type": "module",
|
||||
"description": "哔哩哔哩字幕列表",
|
||||
"main": "index.js",
|
||||
|
@@ -62,7 +62,7 @@ class InjectMessaging<AllExtensionMessagesType extends ExtensionMessage, AllInje
|
||||
[K in AllInjectMessagesType['method']]: (params: Extract<AllInjectMessagesType, { method: K }>['params'], context: MethodContext) => Promise<any>
|
||||
}) {
|
||||
this.methods = methods
|
||||
this.port = chrome.runtime.connect(import.meta.env.VITE_EXTENSION_ID, {
|
||||
this.port = chrome.runtime.connect({
|
||||
name: 'bilibili-inject',
|
||||
})
|
||||
this.l1protocol = new Layer1Protocol<L2ReqMsg, L2ResMsg>(this.messageHandler, this.port)
|
||||
|
@@ -63,7 +63,7 @@ const useMessagingService = <AllAPPMessagesType extends AppMessage>(methods?: {
|
||||
}, [methods])
|
||||
|
||||
const port = useMemo(() => {
|
||||
return chrome.runtime.connect(import.meta.env.VITE_EXTENSION_ID, {
|
||||
return chrome.runtime.connect({
|
||||
name: 'bilibili-app',
|
||||
})
|
||||
}, [])
|
||||
|
1
src/vite-env.d.ts
vendored
1
src/vite-env.d.ts
vendored
@@ -1,7 +1,6 @@
|
||||
/// <reference types="vite/client" />
|
||||
|
||||
interface ImportMetaEnv {
|
||||
readonly VITE_EXTENSION_ID: string
|
||||
}
|
||||
|
||||
interface ImportMeta {
|
||||
|
Reference in New Issue
Block a user