mirror of
https://github.com/JosunLP/BrowserExtensionTemplate.git
synced 2025-10-14 16:10:10 +00:00
feat: Implement ErrorBoundary class for global error handling
feat: Refactor Session class to use LocalStorageService for session management feat: Enhance BasicButton component with configuration options and event handling style: Update SASS variables to CSS custom properties for better theming support style: Modify app.sass to include Bootstrap with legacy import chore: Update settings.ts to handle session initialization and error notifications fix: Improve buttonType definition for better readability chore: Refactor parse.ts for cleaner file handling and keyword replacement chore: Enhance syncConfig.ts with TypeScript interfaces and async file operations chore: Update v2.ts to modify manifest.json for compatibility with manifest version 2 chore: Revise tsconfig.json for stricter type checking and improved module resolution chore: Refactor vite.config.ts for better build configuration and asset management
This commit is contained in:
parent
8f99895c88
commit
482151f980
24 changed files with 1321 additions and 418 deletions
|
@ -1,29 +1,29 @@
|
|||
{
|
||||
"AppData": {
|
||||
"id": "browser_extension_template",
|
||||
"name": "Browser Extension Template",
|
||||
"version": "0.0.1",
|
||||
"description": "A basic template based on SASS and TypeScript to create browser extensions without directly relying on a larger framework.",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+ssh://git@github.com:JosunLP/BrowserExtensionTemplate.git"
|
||||
},
|
||||
"license": "MIT",
|
||||
"homepage": "https://github.com/JosunLP/BrowserExtensionTemplate",
|
||||
"bugs": {
|
||||
"url": "https://github.com/JosunLP/BrowserExtensionTemplate/issues"
|
||||
},
|
||||
"authors": [
|
||||
{
|
||||
"name": "Jonas Pfalzgraf",
|
||||
"email": "info@josunlp.de"
|
||||
}
|
||||
]
|
||||
"AppData": {
|
||||
"id": "browser_extension_template",
|
||||
"name": "Browser Extension Template",
|
||||
"version": "0.0.1",
|
||||
"description": "A basic template based on SASS and TypeScript to create browser extensions without directly relying on a larger framework.",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+ssh://git@github.com:JosunLP/BrowserExtensionTemplate.git"
|
||||
},
|
||||
"htmlTemplatePairs": [
|
||||
{
|
||||
"key": "{{BET}}",
|
||||
"value": "Browser Extension Template"
|
||||
}
|
||||
"license": "MIT",
|
||||
"homepage": "https://github.com/JosunLP/BrowserExtensionTemplate",
|
||||
"bugs": {
|
||||
"url": "https://github.com/JosunLP/BrowserExtensionTemplate/issues"
|
||||
},
|
||||
"authors": [
|
||||
{
|
||||
"name": "Jonas Pfalzgraf",
|
||||
"email": "info@josunlp.de"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"htmlTemplatePairs": [
|
||||
{
|
||||
"key": "{{BET}}",
|
||||
"value": "Browser Extension Template"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue