Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
hrai committed Oct 13, 2024
1 parent ab6b195 commit bb6de9b
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 37 deletions.
74 changes: 43 additions & 31 deletions distribution/manifest_v2.json
Original file line number Diff line number Diff line change
@@ -1,33 +1,45 @@
{
"name": "Auto Capitalise Sentence",
"description": "Browser add-on/extension to automatically capitalise the first letter of a sentence while typing.",
"homepage_url": "https://github.com/hrai/auto-capitalise-sentence/",
"manifest_version": 2,
"version": "0.0.0",
"browser_action": {
"default_icon": "icons/auto-capitalise-sentence.png",
"default_title": "Auto-capitalise sentence",
"default_popup": "popup/settings.html"
},
"background": {
"scripts": ["dependencies/jquery.min.js", "lib/background.bundle.js"]
},
"content_scripts": [
{
"run_at": "document_end",
"matches": ["<all_urls>"],
"js": [
"dependencies/jquery.min.js",
"lib/main.bundle.js",
"lib/settings.bundle.js"
]
}
],
"icons": {
"16": "icons/auto-capitalise-sentence.png",
"48": "icons/auto-capitalise-sentence.png",
"128": "icons/auto-capitalise-sentence.png"
},
"permissions": ["storage", "tabs"]
"name": "Auto Capitalise Sentence",
"description": "Browser add-on/extension to automatically capitalise the first letter of a sentence while typing.",
"homepage_url": "https://github.com/hrai/auto-capitalise-sentence/",
"manifest_version": 2,
"version": "0.0.0",
"browser_action": {
"default_icon": "icons/auto-capitalise-sentence.png",
"default_title": "Auto-capitalise sentence",
"default_popup": "popup/settings.html"
},
"background": {
"scripts": [
"dependencies/jquery.min.js",
"lib/background.bundle.js"
]
},
"content_scripts": [
{
"run_at": "document_end",
"matches": [
"<all_urls>"
],
"js": [
"dependencies/jquery.min.js",
"lib/main.bundle.js",
"lib/settings.bundle.js"
]
}
],
"icons": {
"16": "icons/auto-capitalise-sentence.png",
"48": "icons/auto-capitalise-sentence.png",
"128": "icons/auto-capitalise-sentence.png"
},
"permissions": [
"storage",
"tabs"
],
"browser_specific_settings": {
"gecko": {
"id": "{680e06ed-65ed-4e11-a9c0-0e6f80b9a347}"
}
}
}
7 changes: 1 addition & 6 deletions distribution/manifest_v3.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,5 @@
"default_title": "Auto-capitalise sentence",
"default_popup": "popup/settings.html"
},
"content_security_policy": {},
"browser_specific_settings": {
"gecko": {
"id": "{680e06ed-65ed-4e11-a9c0-0e6f80b9a347}"
}
}
"content_security_policy": {}
}

0 comments on commit bb6de9b

Please sign in to comment.