-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmanifest.json
More file actions
executable file
·94 lines (92 loc) · 3.02 KB
/
Copy pathmanifest.json
File metadata and controls
executable file
·94 lines (92 loc) · 3.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 2,
"name": "Steemit More Info",
"description": "Shows more info while you are on steemit.com",
"icons":{
"16" : "smi16.png",
"48" : "smi48.png",
"128" : "smi.png"
},
"version": "1.5.0",
"homepage_url": "https://steemit.com/steemdev/@armandocat/steemit-more-info-1-5-chrome-extension-firefox-extension",
"background" : {
"scripts" : ["vendor/jquery-3.2.1.min.js","background.js"]
},
"content_scripts": [{
"js": ["document_start.js"],
"matches": ["https://steemit.com/*"],
"run_at": "document_start"
},{
"js": ["vendor/jquery-3.2.1.min.js","chrome.ext.js"],
"matches": ["https://steemit.com/*"]
}],
"web_accessible_resources": [
"vendor/steem.min.js",
"vendor/jquery-3.2.1.min.js",
"vendor/lodash.min.js",
"vendor/history-events.js",
"vendor/jquery.livequery.min.js",
"vendor/moment.min.js",
"vendor/compare-versions.js",
"vendor/toastr.min.css",
"vendor/toastr.min.js",
"vendor/wsHook.js",
"vendor/Chart.min.js",
"vendor/remarkable.min.js",
"vendor/sanitize-html.min.js",
"vendor/attrchange.js",
"vendor/datatables.min.css",
"vendor/datatables.min.js",
"vendor/DataTables-1.10.16/images/*",
"vendor/HtmlReady.js",
"vendor/jquery.justifiedGallery.min.js",
"vendor/justifiedGallery.min.css",
"vendor/linkify.min.js",
"vendor/linkify-string.min.js",
"vendor/linkify-plugin-mention.min.js",
"vendor/jquery.fancybox.min.js",
"vendor/jquery.fancybox.min.css",
"vendor/jquery.scrollparent.js",
"src/utils/steem-config.js",
"src/utils/chrome_addons.js",
"src/utils/notification_popup.js",
"src/utils/sanitize.js",
"src/utils/utils.js",
"src/utils/events.js",
"src/utils/check_update.js",
"src/utils/websocket_hook.js",
"src/utils/easterEgg.js",
"src/utils/upvote_me_banner.js",
"src/main.css",
"src/profile_banner.js",
"src/base_tab.js",
"src/votes_tab.js",
"src/mentions_tab.js",
"src/vote_weight_slider.js",
"src/post_votes_list.js",
"src/favorite_tags.js",
"src/blog_histogram.js",
"src/followers_table.js",
"src/show_posts_as_grid.js",
"src/external_links_menu.js",
"src/post_floating_bottom_bar.js",
"src/userpic_zoom.js",
"src/markdown_editor_beautifier.js",
"src/gif_picker.js",
"src/post_boost_button.js",
"src/wallet_transfer_filter.js",
"src/image-gallery.js",
"src/search.js",
"src/settings.js"
],
"externally_connectable": {
"matches": ["https://steemit.com/*"]
},
"permissions": [
"activeTab",
"webRequest",
"webRequestBlocking",
"https://steemit.com/*"
]
}