-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugins.txt
2000 lines (2000 loc) · 28.1 KB
/
plugins.txt
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
ctools
token
pathauto
views
libraries
entity
webform
jquery_update
metatag
admin_menu
imce
date
field_group
google_analytics
ckeditor
captcha
module_filter
link
redirect
colorbox
views_bulk_operations
backup_migrate
features
rules
xmlsitemap
wysiwyg
entityreference
transliteration
devel
media
panels
variable
menu_block
file_entity
views_slideshow
mailsystem
admin_toolbar
block_class
recaptcha
l10n_update
field_collection
better_exposed_filters
i18n
context
ds
globalredirect
paragraphs
smtp
honeypot
inline_entity_form
menu_attributes
search_api
strongarm
email
superfish
video_embed_field
imce_wysiwyg
entity_reference_revisions
admin_views
addressfield
linkit
flexslider
job_scheduler
views_data_export
feeds
diff
special_menu_items
calendar
uuid
eu_cookie_compliance
mimemail
references
node_clone
scheduler
multiupload_filefield_widget
field_permissions
plupload
imagecache_actions
views_php
site_map
simple_sitemap
multiupload_imagefield_widget
taxonomy_menu
conditional_fields
media_youtube
extlink
lightbox2
filefield_sources
masquerade
views_infinite_scroll
draggableviews
entity_browser
quicktabs
cck
image_url_formatter
advanced_help
votingapi
twig_tweak
views_bootstrap
pathologic
crop
module_missing_message_fixer
fontawesome
fontyourface
commerce
simplenews
adminimal_admin_menu
insert
smart_trim
geofield
content_access
embed
slick
facetapi
page_title
ckeditor_link
imce_mkdir
chosen
google_tag
entity_embed
title
memcache
flag
print
focal_point
nice_menus
token_filter
addtoany
view_unpublished
weight
exclude_node_title
field_formatter_settings
views_field_view
oauth
address
password_policy
feeds_tamper
advagg
seckit
auto_nodetitle
jcarousel
services
responsive_menus
features_extra
config_update
editor_advanced_link
geophp
site_verify
taxonomy_manager
better_formats
search_api_db
node_export
dropzonejs
search_api_solr
autologout
fivestar
bundle_copy
location
views_accordion
filefield_paths
entity_translation
menu_breadcrumb
easy_breadcrumb
logintoboggan
webform_validation
multiform
i18nviews
blazy
slick_views
role_delegation
youtube
swiftmailer
elements
color_field
eva
login_destination
languageicons
robotstxt
media_vimeo
rabbit_hole
htmlmail
menu_admin_per_menu
ultimate_cron
config_filter
geocoder
custom_search
migrate
nodequeue
auto_entitylabel
custom_breadcrumbs
options_element
image_resize_filter
fences
simple_gmap
back_to_top
panelizer
gmap
bean
search404
geolocation
breakpoints
menu_link_attributes
tb_megamenu
adminimal_admin_toolbar
migrate_plus
maxlength
workbench
checklistapi
config_split
imagecache_token
viewfield
wysiwyg_filter
webform_ajax
entity_view_mode
override_node_options
email_registration
security_review
shortcode
css_injector
sharethis
migrate_tools
acquia_connector
galleryformatter
image_widget_crop
stringoverrides
views_conditional
config_ignore
hierarchical_select
imagemagick
r4032login
views_fieldsets
coffee
computed_field
profile2
nivo_slider
views_autocomplete_filters
colorbox_node
select_or_other
multiblock
menu_trail_by_path
realname
linkchecker
viewsreference
antibot
externalauth
manualcrop
menu_position
field_slideshow
video
entitycache
expire
login_security
acl
path_breadcrumbs
mailchimp
workbench_moderation
page_manager
session_limit
seo_checklist
chain_menu_access
nodeblock
faq
field_formatter_class
phone
menu_item_visibility
taxonomy_display
schema_metatag
twitter
elysia_cron
typed_data
sitemap
tablefield
field_validation
tvi
metatags_quick
views_load_more
ubercart
xautoload
svg_image
empty_front_page
contact_storage
owlcarousel
ldap
views_responsive_grid
navbar
filefield_sources_plupload
flexslider_views_slideshow
service_links
delta
addthis
picture
entityqueue
environment_indicator
link_attributes
editor_file
imagefield_crop
cas
purge
uuid_features
contact_block
facets
commerce_shipping
twitter_block
themekey
social_media_links
redis
username_enumeration_prevention
components
omega_tools
lang_dropdown
shs
flood_control
flood_unblock
menu_token
semanticviews
juicebox
jquery_plugin
advanced_forum
og
charts
key
profile
formblock
message
encrypt
restui
views_datasource
taxonomy_access_fix
leaflet
less
eck
search_config
tagclouds
block_field
imageapi_optimize
blockreference
boost
publishcontent
slick_extras
file_browser
imageapi
views_tree
image_effects
rename_admin_paths
term_reference_tree
allowed_formats
imce_filefield
masonry
jquery_colorpicker
fast_404
file_mdm
front
telephone
simplehtmldom
entityform
imagefield
apachesolr
yoast_seo
insert_view
search_api_autocomplete
csv_serialization
hacked
twig_field_value
date_popup_authored
entity_clone
replicate
clientside_validation
masonry_views
fitvids
anchor_link
session_api
simplify
entityreference_prepopulate
spamspan
retina_images
imagecache
nodeaccess
drafty
emfield
filefield
fb_likebox
webform_rules
autocomplete_deluxe
commerce_paypal
default_content
disable_messages
varnish
roleassign
noreqnewpass
jquery_ui
shield
block_visibility_groups
administerusersbyrole
domain
fpa
node_convert
bootstrap_layouts
webform_localization
markup
image_link_formatter
icon
navigation404
path_redirect_import
ckeditor_media_embed
media_ckeditor
userprotect
date_ical
features_override
block_titlelink
follow
colorbutton
state_machine
video_filter
reroute_email
menu_firstchild
securepages
message_notify
real_aes
html5_tools
invisimail
field_collection_views
bg_image_formatter
videojs
find_content
admin_theme
url
fieldable_panels_panes
audiofield
panelbutton
composer_manager
content_taxonomy
bootstrap_library
ds_bootstrap_layouts
countries
inline_conditions
defaultconfig
migrate_extras
pm_existing_pages
form_placeholder
crumbs
views_megarow
vppr
commerce_flat_rate
webform_hints
menu_per_role
feeds_xpathparser
mollom
search_api_ranges
acquia_purge
block_content_permissions
entityreference_view_widget
views_rss
views_nivo_slider
webform_layout
imagestyleflush
conditional_styles
faqfield
search_api_page
widgets
poormanscron
search_autocomplete
disqus
minify
registration
search_api_sorts
simplesamlphp_auth
hide_submit
securelogin
iframe
chart
httprl
legal
entity_browser_enhanced
scroll_to_top
panels_breadcrumbs
entity_usage
editablefields
image_field_caption
rules_conditional
media_entity_browser
commerce_discount
form_builder
imageblock
views_aggregator
mimedetect
media_entity_twitter
views_distinct
taxonomy_csv
csp
image_captcha_refresh
flippy
migrate_source_csv
webform_phone
at_tools
admin_language
views_templates
modal_forms
asset_injector
linked_field
menu_item_extras
custom_formatters
radix_layouts
l10n_client
mediaelement
fancybox
filter_perms
socialmedia
field_collection_table
panels_everywhere
simplified_menu_admin
commerce_features
forum_access
pdf
wysiwyg_template
storage_api
php
nodewords
tabtamer
menu_import
protected_pages
feeds_ex
cloudflare
content_lock
shadowbox
optimizedb
rules_http_client
modernizr
editableviews
commerce_stock
views_block_area
addanother
matomo
imce_rename
apps
bd_video
text_resize
adaptive_image
menu_target
visitors
spamicide
hybridauth
schema
views_selective_filters
admin
menu_html
backports
views_content_cache
privatemsg
commerce_addressbook
workflow
media_entity_instagram
references_dialog
m4032404
fape
physical
revisioning
views_fluid_grid
subpathauto
entity_print
node_page_disable
double_field
login_history
fieldblock
commerce_backoffice
media_gallery
leaflet_more_maps
phpmailer
insert_block
name
imce_crop
commerce_autosku
webform_conditional
save_draft
contribute
statsd
node_clone_tab
views_isotope
menu_editor
js_injector
nodereference_url
multiselect
readmorecontrol
beautytips
prepopulate
config_perms
webform_share
views_ticker
config_readonly
services_views
views_block_filter_block
dynamic_entity_reference
commerce_extra_price_formatters
stage_file_proxy
entityreference_filter
office_hours
messaging
facetapi_bonus
galleria
commerce_search_api
user_pwreset_timeout
group
ckeditor_font
responsive_favicons
s3fs
field_multiple_limit
user_import
panels_bootstrap_layouts
advanced_link
schemaorg
imce_plupload
media_entity
http_client
google_map_field
cer
caption_filter
gtranslate
elfinder
ip_geoloc
media_entity_generic
spambot
token_insert
menu_node
token_tweaks
token_custom
google_analytics_reports
compact_forms
media_soundcloud
hidden_captcha
field_tools
betterlogin
event_calendar
db_maintenance
user_registrationpassword
void_menu
google_recaptcha
imce_tools
quick_node_clone
menu_icons
views_pdf
quiz
dhtml_menu
views_bulk_edit
rate
maillog
views_flipped_table
bg_image
commerce_coupon
media_browser_plus
node_view_permissions
field_hidden
comment_notify
newsletter
field_display_label
translation_helpers
content_browser
search_api_attachments
default_content_extra
contact_forms
textformatter
commerce_checkout_progress
empty_page
notifications
css_editor
workbench_access
remote_stream_wrapper
collapse_text
addressfield_tokens
serial
similarterms
replicate_ui
responsive_menu
entity_rules
browscap
system_stream_wrapper
markdown
hreflang
deploy
image_delta_formatter
webform_reply_to
disable_breadcrumbs
classy_paragraphs
skinr
popup
styleguide
phpexcel
nocurrent_pass
warmer
moopapi
styles
better_normalizers
blockify
openlayers
linkimagefield
cloud_zoom
facetapi_pretty_paths
ocupload
tagadelic
cacheexclude
proj4js
conflict
unique_field
entity_reference_display
entity2text
redirect_after_login
multiple_selects
views_litepager
commerce_message
field_collection_fieldset
ckeditor_templates
viewreference
lightning_core
autoban
image
private_files_download_permission
queue_ui
cshs
cdn
fullcalendar
jplayer
select2
bueditor
views_calc
scanner
dragndrop_upload
commerce_feeds
pantheon_advanced_page_cache
label_help
multiple_fields_remove_button
pdf_reader
webform_term_opts
views_date_format_sql
prlp
bootstrap_fieldgroup
blockgroup
taxonomy_access
panels_extra_styles
imagefield_tokens
migrate_d2d
jqeasing
biblio
domain_views
customerror
entity_block
webform_views
views_slideshow_jcarousel
ckeditor_codemirror
adminrole
menu_views
user_picture_field
delete_all
webform_block
respondjs
media_oembed
ddblock
key_value
fullcalendar_view
adsense
module_blacklist
relation
data
boxes
tfa
piwik
distro_update
htmlpurifier
consumers
mobile_detect
advanced_text_formatter
block_class_styles
exif_orientation
captcha_webform
views_base_url
panopoly_magic
h5p
locationmap
add_to_head
download_file
google_fonts
no_autocomplete
paranoia
field_default_token
botcha
autoassignrole
media_entity_image
colors
restrict_by_ip
support
imagecache_external
sendgrid_integration
date_popup
yandex_metrics
block_access
lightning_media
missing_module
commerce_extra
ace_editor
potx
menu_node_views
alpha_pagination
floating_block
translation_overview
panopoly_widgets
vscc
commerce_add_to_cart_confirmation
taxonomy_menu_trails
gdoc_field
tipsy
panopoly_images
google_cse
multiversion
term_csv_export_import
content_approval
block_attributes
panopoly_theme
ife
views_rules
fasttoggle
webform_references
contact_form_blocks
responsive_preview
image_style_quality
statistics_counter
smartcrop
replicate_paragraphs
syslog_advanced
genpass
bigmenu
plup
panopoly_core
datepicker
ckeditor_image
readonlymode
hsts
forward
easy_social
ajax_comments
interval
linkit_picker
persistent_login
cors
views_export_xls
menu_clone
demo
seo_checker
ajaxblocks
node_gallery
getlocations
mail_logger
browserclass
entityreference_autocomplete
node_revision_delete
minifyhtml
feed_import
webform_encrypt
social_media
file_resup
apachesolr_multisitesearch
path_redirect
fblikebutton
popup_message
panels_extra_layouts
variablecheck
imagefield_focus
timefield
entityconnect
magnific_popup
hook_event_dispatcher
views_contextual_filters_or
context_condition_theme
menu_attach_block
mandrill
migrate_upgrade
lazyloader
multifield
term_merge
commerce_migrate
switchtheme
media_colorbox
admin_menu_source
field_group_link
total_control
workbench_email
simple_oauth
toolbar_admin_menu
slick_media
registry_autoload
relaxed
connector
ckeditor_accordion
dismiss
variable_email
currency
emogrifier
mail_edit
menu_condition
yamaps
lightning_workflow
geofield_map
field_formatter_css_class
scroll_to_destination_anchors
apachesolr_autocomplete
termcase
magic
ejectorseat
panopoly_admin
upgrade_status
fakeobjects
svg_image_field
photoswipe
underscore
commerce_checkout_redirect
views_send
bootstrap_paragraphs
facebook_comments
social_api
lazy_pane
acsf
responsive_tables_filter
cck_blocks
contentanalysis
stickynav
book_access
fapi_validation
entityform_block
entity_dependency
database_sanitize
oauth2_client
contemplate
views_slideshow_slider
oauthconnector
me
config_pages
change_pwd_page
workspace
ckeditor_media
empty_fields
remember_me
advuser
rules_link
replication
profanity
tmgmt
colorbox_inline
simple_pass_reset
tfa_basic
contentoptimizer
ludwig
custom_pub
getid3
health_check
pathauto_persist
counter
simplemeta
notifications_forum
advban
shariff
oembed
roles_for_menu
commerce_fancy_attributes
slick_paragraphs
node_class
chr
match_redirect
mpac
commerce_reports
emptyparagraphkiller
imce_uploader
twitter_timeline
layout_builder_restrictions
userone
jquerymenu
views_jqfx
epsacrop
uc_coupon
save_edit
panels_tabs
devel_entity_updates
accordion_menu
gacsp
pathauto_i18n
leaflet_markercluster
instagram_block
taxonomy_formatter
role_export
unlimited_number
colorfield
nodeorder
payment
profile2_regpath
social_auth
we_megamenu
lightning_layout
animate_css
context_error
field_group_multiple
tamper
ckeditor_link_file
collapsiblock
moderation_sidebar
votingapi_widgets