Initial commit

This commit is contained in:
2021-07-13 23:11:58 +02:00
commit 96063abc3a
9 changed files with 228 additions and 0 deletions

24
manifest.json Normal file
View File

@@ -0,0 +1,24 @@
{
"manifest_version": 2,
"name": "Base Url Switcher",
"version": "1.0",
"description": "Allows for fast switching between different base urls with the same url parameters.",
"icons": {
"96": "icons/base-url-switcher-96.png"
},
"options_ui": {
"page": "options/options.html",
"browser_style": true
},
"permissions": ["activeTab", "storage"],
"browser_action": {
"default_icon": "icons/base-url-switcher-96.png",
"default_title": "Base Url Switcher",
"default_popup": "popup/choose_url.html",
"browser_style": true
}
}