Skip to content

Commit 61f9cfd

Browse files
committed
Change tagline, fix typo in Readme
1 parent 0861713 commit 61f9cfd

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ The codesy.io widget is an add-on for Firefox, Chrome, and Opera that adds codes
4646
* **build-chrome-file**: create zip for chrome dev in the chrome.source directory with dev settings
4747

4848
#### build-{browser}-directory:
49-
* **build-firefox-directory**: create firefox dev directroy in the firefox.source directory with dev settings
50-
* **build-chrome-directory**: create chrome dev directroy in the chrome.source directory with dev settings
49+
* **build-firefox-directory**: create firefox dev directory in the firefox.source directory with dev settings
50+
* **build-chrome-directory**: create chrome dev directory in the chrome.source directory with dev settings
5151

5252
#### workon-{browser}-directory or workon-{browser}-directory:
5353
watches extension files and rebuilds

src/csp.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ function makeCspAppender (domain='') {
33
const name_finder = (name) => (csp_name) => csp_name === name.toUpperCase()
44
const if_csp = (name) => csp_names.find(name_finder(name)) ? true : false
55

6-
const codesy_types = 'connect-src child-src script-src style-src';
6+
const codesy_types = 'connect-src frame-src child-src script-src style-src';
77
const is_codesy = (type) => codesy_types.indexOf(type) !== -1;
88
const add_codesy = (accum, word) =>`${accum} ${word} ${is_codesy(word) ? domain : '' }`;
99
const insert_domain = (csp) => csp.split(' ').reduce(add_codesy,'');

src/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "codesy.io",
33
"author": "[email protected]",
4-
"description": "codesy is a pay-what-you-want market for the open source community to encourage coders to fix important bugs.",
4+
"description": "Codesy is a platform for fixing and funding open source software.",
55
"manifest_version": 2,
66
"permissions": [
77
"https://*.codesy.io/",

0 commit comments

Comments
 (0)