-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
SpyrosNm
committed
May 1, 2021
1 parent
3d920b6
commit cecfbef
Showing
5 changed files
with
27 additions
and
23 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,25 +1,29 @@ | ||
{ | ||
"manifest_version": 2, | ||
"name": "LinkedIn Learning captions", | ||
"description": "This extension is used for setting font size in LinkedIn Learning video captions.", | ||
"version": "0.0.0.1", | ||
"browser_action": { | ||
"default_icon": "icon.png", | ||
"default_popup": "popup.html" | ||
}, | ||
"content_scripts": [ | ||
{ | ||
"all_frames": false, | ||
"js": [ | ||
"content.js" | ||
], | ||
"matches": [ | ||
"https://*/*" | ||
] | ||
} | ||
], | ||
"permissions": [ | ||
"activeTab", | ||
"storage" | ||
] | ||
"manifest_version": 2, | ||
"name": "LinkedIn Learning captions", | ||
"description": "This extension is used for setting font size in LinkedIn Learning video captions.", | ||
"version": "0.0.0.3", | ||
"icons": { | ||
"16": "icon16.png", | ||
"48": "icon48.png", | ||
"128": "icon128.png" | ||
}, | ||
"browser_action": { | ||
"default_popup": "popup.html" | ||
}, | ||
"content_scripts": [ | ||
{ | ||
"all_frames": false, | ||
"js": [ | ||
"content.js" | ||
], | ||
"matches": [ | ||
"https://www.linkedin.com/learning/*" | ||
] | ||
} | ||
], | ||
"permissions": [ | ||
"activeTab", | ||
"storage" | ||
] | ||
} |