forked from hrai/auto-capitalise-sentence
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade GitHub actions versions (hrai#271)
* using new upload-artifact version * cleanup * cleanup * using native web-ext for firefor submission * removed web-ext-submit * cleanup * cleanup * cleanup * cleanup * cleanup * cleanup
- Loading branch information
Showing
6 changed files
with
100 additions
and
90 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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": "Firefox 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}" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters