-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
19 lines (19 loc) · 770 Bytes
/
Copy pathmanifest.json
File metadata and controls
19 lines (19 loc) · 770 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"manifest_version": 2,
"name": "Make Facebook Great Again",
"description": "This extension removes any mention, post and treading topic related to Trump or Hillary. User can define any number of custom keywords or sentences to filter by. Posts can be shown individually by clicking a provided link where the post would normally be in your timeline",
"version": "0.0.1",
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [ "http://facebook.com/*","http://*.facebook.com/*", "https://*.facebook.com/*", "https://facebook.com/*"],
"js": ["jquery-3.0.0.min.js","main.js"],
"css": ["no_tic.css"]
}],
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
}
}