├── .dockerignore ├── .gitignore ├── .pylintrc ├── .travis.yml ├── Dockerfile ├── Dockerfile-raspberrypi3 ├── README.md ├── ansible ├── .gitignore ├── Makefile ├── c-flo.yml ├── group_vars │ ├── alarmpis.yml │ ├── all.yml │ └── raspbians.yml ├── host_vars │ ├── bar-display.yml │ ├── c-lab-display.yml │ ├── c-leuse-display.yml │ ├── east-display.yml │ ├── he1-terminal.yml │ ├── he2-display.yml │ ├── mainhall-display.yml │ ├── mainhall-mirror-display.yml │ ├── mechblast.yml │ ├── nerdarea-display.yml │ ├── nerdctrl.yml │ ├── north-display.yml │ ├── openmct.yml │ ├── siri.yml │ ├── soundlab-display.yml │ ├── south-display.yml │ ├── weltenbau-display.yml │ └── west-display.yml ├── hosts ├── infoscreens.yml ├── mfs_backup_rsa.pub ├── msgflo.yml ├── openmct.yml ├── roles │ ├── arch-docker │ │ └── tasks │ │ │ └── main.yml │ ├── docker-systemd │ │ ├── defaults │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ └── templates │ │ │ ├── backup.sh │ │ │ └── systemd-container.service │ ├── fullscreen │ │ ├── tasks │ │ │ └── main.yml │ │ └── templates │ │ │ └── i3config.conf │ ├── influxdb-docker-backup │ │ ├── tasks │ │ │ └── main.yml │ │ └── templates │ │ │ ├── backup.sh │ │ │ ├── influx-backup.service │ │ │ └── influx-backup.timer │ ├── lightdm │ │ ├── handlers │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ └── templates │ │ │ └── lightdm.conf │ ├── raspbian │ │ ├── files │ │ │ ├── authorized_keys │ │ │ └── chromium-defaults │ │ │ │ ├── Avatars │ │ │ │ └── avatar_generic.png │ │ │ │ ├── Certificate Revocation Lists │ │ │ │ ├── Default │ │ │ │ ├── Archived History │ │ │ │ ├── Archived History-journal │ │ │ │ ├── Bookmarks │ │ │ │ ├── Bookmarks.bak │ │ │ │ ├── Cookies │ │ │ │ ├── Cookies-journal │ │ │ │ ├── Current Session │ │ │ │ ├── Current Tabs │ │ │ │ ├── Extension Rules │ │ │ │ │ ├── 000003.log │ │ │ │ │ ├── CURRENT │ │ │ │ │ ├── LOCK │ │ │ │ │ ├── LOG │ │ │ │ │ └── MANIFEST-000001 │ │ │ │ ├── Extension State │ │ │ │ │ ├── 000006.log │ │ │ │ │ ├── CURRENT │ │ │ │ │ ├── LOCK │ │ │ │ │ ├── LOG │ │ │ │ │ └── MANIFEST-000004 │ │ │ │ ├── Extensions │ │ │ │ │ ├── cihohekcekjgjdkeljpkbaaecgfoimbj │ │ │ │ │ │ └── 1.0.1_0 │ │ │ │ │ │ │ ├── Cached Theme Material Design.pak │ │ │ │ │ │ │ ├── Cached Theme.pak │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── bg.png │ │ │ │ │ │ │ ├── bg2.png │ │ │ │ │ │ │ ├── button.png │ │ │ │ │ │ │ ├── frame.png │ │ │ │ │ │ │ ├── frame_incog.png │ │ │ │ │ │ │ ├── tab.png │ │ │ │ │ │ │ ├── tab_incog.png │ │ │ │ │ │ │ └── toolbar.png │ │ │ │ │ │ │ └── manifest.json │ │ │ │ │ ├── gleekbfjekiniecknbkamfmkohkpodhe │ │ │ │ │ │ └── 1.1_0 │ │ │ │ │ │ │ ├── _metadata │ │ │ │ │ │ │ └── verified_contents.json │ │ │ │ │ │ │ ├── background.js │ │ │ │ │ │ │ └── manifest.json │ │ │ │ │ ├── mclkkofklkfljcocdinagocijmpgbhab │ │ │ │ │ │ └── 5.0.1.9_0 │ │ │ │ │ │ │ ├── _locales │ │ │ │ │ │ │ ├── am │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── ar │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── bg │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── bn │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── ca │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── cs │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── da │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── de │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── el │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── en │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── en_GB │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── es │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── es_419 │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── et │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── fa │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── fi │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── fil │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── fr │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── gu │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── hi │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── hr │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── hu │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── id │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── it │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── iw │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── ja │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── kn │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── ko │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── lt │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── lv │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── ml │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── mr │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── ms │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── nb │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── nl │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── pl │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── pt_BR │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── pt_PT │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── ro │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── ru │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── sk │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── sl │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── sr │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── sv │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── sw │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── ta │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── te │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── th │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── tr │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── uk │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── vi │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── zh_CN │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ └── zh_TW │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── _metadata │ │ │ │ │ │ │ └── verified_contents.json │ │ │ │ │ │ │ ├── background.html │ │ │ │ │ │ │ ├── chext_backgroundpage.js │ │ │ │ │ │ │ ├── chext_common.css │ │ │ │ │ │ │ ├── chext_driver.js │ │ │ │ │ │ │ ├── chext_inject.js │ │ │ │ │ │ │ ├── chext_inputtoolsbin.css │ │ │ │ │ │ │ ├── chext_loader.js │ │ │ │ │ │ │ ├── chext_options.js │ │ │ │ │ │ │ ├── chext_popup.js │ │ │ │ │ │ │ ├── chext_scrollbar.css │ │ │ │ │ │ │ ├── engine.config │ │ │ │ │ │ │ ├── image │ │ │ │ │ │ │ ├── Chrome_IME_Active2X.png │ │ │ │ │ │ │ ├── Chrome_IME_Inactive2X.png │ │ │ │ │ │ │ ├── cleardot.gif │ │ │ │ │ │ │ ├── flat_input_tools_logo.png │ │ │ │ │ │ │ ├── flat_property_icons.png │ │ │ │ │ │ │ ├── google_logo_41.png │ │ │ │ │ │ │ ├── it-128.png │ │ │ │ │ │ │ ├── it-16.png │ │ │ │ │ │ │ ├── it-32.png │ │ │ │ │ │ │ ├── it-48.png │ │ │ │ │ │ │ ├── ita_sprite5.png │ │ │ │ │ │ │ ├── ita_sprite6.png │ │ │ │ │ │ │ ├── pencil.png │ │ │ │ │ │ │ ├── producticon_48px_active.png │ │ │ │ │ │ │ ├── search_button_normal.png │ │ │ │ │ │ │ ├── voice_disabled.png │ │ │ │ │ │ │ ├── voice_enabled.png │ │ │ │ │ │ │ └── voice_speaking.png │ │ │ │ │ │ │ ├── imeconfigs │ │ │ │ │ │ │ ├── am_t_i0_und.js │ │ │ │ │ │ │ ├── ar_t_i0_und.js │ │ │ │ │ │ │ ├── be_t_i0_und.js │ │ │ │ │ │ │ ├── bg_t_i0_und.js │ │ │ │ │ │ │ ├── bn_t_i0_und.js │ │ │ │ │ │ │ ├── de_t_i0_und.js │ │ │ │ │ │ │ ├── el_t_i0_und.js │ │ │ │ │ │ │ ├── en_t_i0_und.js │ │ │ │ │ │ │ ├── es_t_i0_und.js │ │ │ │ │ │ │ ├── fa_t_i0_und.js │ │ │ │ │ │ │ ├── fr_t_i0_und.js │ │ │ │ │ │ │ ├── gu_t_i0_und.js │ │ │ │ │ │ │ ├── he_t_i0_und.js │ │ │ │ │ │ │ ├── hi_t_i0_und.js │ │ │ │ │ │ │ ├── it_t_i0_und.js │ │ │ │ │ │ │ ├── ja_t_ja_hira_i0_und.js │ │ │ │ │ │ │ ├── kn_t_i0_und.js │ │ │ │ │ │ │ ├── ml_t_i0_und.js │ │ │ │ │ │ │ ├── mr_t_i0_und.js │ │ │ │ │ │ │ ├── ne_t_i0_und.js │ │ │ │ │ │ │ ├── nl_t_i0_und.js │ │ │ │ │ │ │ ├── or_t_i0_und.js │ │ │ │ │ │ │ ├── pa_t_i0_und.js │ │ │ │ │ │ │ ├── pt_t_i0_und.js │ │ │ │ │ │ │ ├── ru_t_i0_und.js │ │ │ │ │ │ │ ├── sa_t_i0_und.js │ │ │ │ │ │ │ ├── si_t_i0_und.js │ │ │ │ │ │ │ ├── sr_t_i0_und.js │ │ │ │ │ │ │ ├── ta_t_i0_und.js │ │ │ │ │ │ │ ├── te_t_i0_und.js │ │ │ │ │ │ │ ├── th_t_i0_und.js │ │ │ │ │ │ │ ├── ti_t_i0_und.js │ │ │ │ │ │ │ ├── uk_t_i0_und.js │ │ │ │ │ │ │ ├── ur_t_i0_und.js │ │ │ │ │ │ │ ├── vi_t_i0_und.js │ │ │ │ │ │ │ ├── yue_hant_t_i0_und.js │ │ │ │ │ │ │ ├── zh_hans_t_i0_cangjie_1982.js │ │ │ │ │ │ │ ├── zh_hans_t_i0_cangjie_1987.js │ │ │ │ │ │ │ ├── zh_hant_t_i0_cangjie_1982.js │ │ │ │ │ │ │ ├── zh_hant_t_i0_cangjie_1987.js │ │ │ │ │ │ │ ├── zh_hant_t_i0_pinyin.js │ │ │ │ │ │ │ ├── zh_hant_t_i0_und.js │ │ │ │ │ │ │ ├── zh_t_i0_pinyin.js │ │ │ │ │ │ │ ├── zh_t_i0_pinyin_x0_shuangpin_abc.js │ │ │ │ │ │ │ ├── zh_t_i0_pinyin_x0_shuangpin_flypy.js │ │ │ │ │ │ │ ├── zh_t_i0_pinyin_x0_shuangpin_jiajia.js │ │ │ │ │ │ │ ├── zh_t_i0_pinyin_x0_shuangpin_ms.js │ │ │ │ │ │ │ ├── zh_t_i0_pinyin_x0_shuangpin_ziguang.js │ │ │ │ │ │ │ ├── zh_t_i0_pinyin_x0_shuangpin_ziranma.js │ │ │ │ │ │ │ └── zh_t_i0_wubi_1986.js │ │ │ │ │ │ │ ├── languagedisplay.js │ │ │ │ │ │ │ ├── layouts │ │ │ │ │ │ │ ├── am.js │ │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ │ ├── be.js │ │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ │ ├── bg_phone.js │ │ │ │ │ │ │ ├── bn_inscript.js │ │ │ │ │ │ │ ├── bn_phone.js │ │ │ │ │ │ │ ├── bs.js │ │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ │ ├── chr.js │ │ │ │ │ │ │ ├── chr_phone.js │ │ │ │ │ │ │ ├── ckb_ar.js │ │ │ │ │ │ │ ├── ckb_en.js │ │ │ │ │ │ │ ├── co_accents.js │ │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ │ ├── cs_qwertz.js │ │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ │ ├── de_accents.js │ │ │ │ │ │ │ ├── de_ch.js │ │ │ │ │ │ │ ├── deva_phone.js │ │ │ │ │ │ │ ├── dz.js │ │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ │ ├── en_dvorak.js │ │ │ │ │ │ │ ├── es_accents.js │ │ │ │ │ │ │ ├── es_es.js │ │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ │ ├── ethi.js │ │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ │ ├── fr_accents.js │ │ │ │ │ │ │ ├── fy_accents.js │ │ │ │ │ │ │ ├── ga_accents.js │ │ │ │ │ │ │ ├── gd_accents.js │ │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ │ ├── gu_inscript.js │ │ │ │ │ │ │ ├── gu_phone.js │ │ │ │ │ │ │ ├── guru_inscript.js │ │ │ │ │ │ │ ├── guru_phone.js │ │ │ │ │ │ │ ├── hangul.js │ │ │ │ │ │ │ ├── haw.js │ │ │ │ │ │ │ ├── haw_accents.js │ │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ │ ├── hi.js │ │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ │ ├── hu_101.js │ │ │ │ │ │ │ ├── hy_east.js │ │ │ │ │ │ │ ├── hy_west.js │ │ │ │ │ │ │ ├── is.js │ │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ │ ├── it_accents.js │ │ │ │ │ │ │ ├── iu_nunavik.js │ │ │ │ │ │ │ ├── iu_nunavut.js │ │ │ │ │ │ │ ├── iw.js │ │ │ │ │ │ │ ├── ka_qwerty.js │ │ │ │ │ │ │ ├── ka_typewriter.js │ │ │ │ │ │ │ ├── kk.js │ │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ │ ├── kn_inscript.js │ │ │ │ │ │ │ ├── kn_phone.js │ │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ │ ├── ky_cyrl.js │ │ │ │ │ │ │ ├── latn_002.js │ │ │ │ │ │ │ ├── lb_accents.js │ │ │ │ │ │ │ ├── lis.js │ │ │ │ │ │ │ ├── lo.js │ │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ │ ├── mi.js │ │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ │ ├── ml_inscript.js │ │ │ │ │ │ │ ├── ml_phone.js │ │ │ │ │ │ │ ├── mn_cyrl.js │ │ │ │ │ │ │ ├── mt.js │ │ │ │ │ │ │ ├── my.js │ │ │ │ │ │ │ ├── my_myansan.js │ │ │ │ │ │ │ ├── ne_inscript.js │ │ │ │ │ │ │ ├── ne_phone.js │ │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ │ ├── nl_accents.js │ │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ │ ├── nv.js │ │ │ │ │ │ │ ├── nv_std.js │ │ │ │ │ │ │ ├── or_inscript.js │ │ │ │ │ │ │ ├── or_phone.js │ │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ │ ├── pl_accents.js │ │ │ │ │ │ │ ├── prs.js │ │ │ │ │ │ │ ├── ps.js │ │ │ │ │ │ │ ├── pt_br.js │ │ │ │ │ │ │ ├── pt_br_accents.js │ │ │ │ │ │ │ ├── pt_pt.js │ │ │ │ │ │ │ ├── pt_pt_accents.js │ │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ │ ├── ro_sr13392_primary.js │ │ │ │ │ │ │ ├── ro_sr13392_secondary.js │ │ │ │ │ │ │ ├── rom.js │ │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ │ ├── ru_phone.js │ │ │ │ │ │ │ ├── sa_phone.js │ │ │ │ │ │ │ ├── sd.js │ │ │ │ │ │ │ ├── see.js │ │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ │ ├── sk_qwerty.js │ │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ │ ├── sm_accents.js │ │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ │ ├── sr_cyrl.js │ │ │ │ │ │ │ ├── sr_latn.js │ │ │ │ │ │ │ ├── srp.js │ │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ │ ├── ta_inscript.js │ │ │ │ │ │ │ ├── ta_itrans.js │ │ │ │ │ │ │ ├── ta_phone.js │ │ │ │ │ │ │ ├── ta_tamil99.js │ │ │ │ │ │ │ ├── ta_typewriter.js │ │ │ │ │ │ │ ├── te_inscript.js │ │ │ │ │ │ │ ├── te_phone.js │ │ │ │ │ │ │ ├── tg.js │ │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ │ ├── th_pattajoti.js │ │ │ │ │ │ │ ├── th_tis.js │ │ │ │ │ │ │ ├── tr_f.js │ │ │ │ │ │ │ ├── tr_f_accents.js │ │ │ │ │ │ │ ├── tr_q.js │ │ │ │ │ │ │ ├── tr_q_accents.js │ │ │ │ │ │ │ ├── tt.js │ │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ │ ├── uk_101.js │ │ │ │ │ │ │ ├── ur.js │ │ │ │ │ │ │ ├── us_intl.js │ │ │ │ │ │ │ ├── uz_cyrl_phone.js │ │ │ │ │ │ │ ├── uz_cyrl_type.js │ │ │ │ │ │ │ ├── uz_latn.js │ │ │ │ │ │ │ ├── uzs.js │ │ │ │ │ │ │ ├── vi_tcvn.js │ │ │ │ │ │ │ ├── vi_telex.js │ │ │ │ │ │ │ ├── vi_viqr.js │ │ │ │ │ │ │ ├── vi_vni.js │ │ │ │ │ │ │ └── yi.js │ │ │ │ │ │ │ ├── manifest.json │ │ │ │ │ │ │ ├── module.nmf │ │ │ │ │ │ │ ├── options.html │ │ │ │ │ │ │ └── popup.html │ │ │ │ │ ├── mjocghlclkpgheifflemilcnblodjohg │ │ │ │ │ │ └── 1.16_0 │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── _locales │ │ │ │ │ │ │ ├── ar │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── bg │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── ca │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── cs │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── da │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── de │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── el │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── en-GB │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── en-US │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── en │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── es │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── es_419 │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── et │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── fi │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── fil │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── fr │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── he │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── hi │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── hr │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── hu │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── id │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── it │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── ja │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── ko │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── lt │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── lv │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── nl │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── no │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── pl │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── pt-BR │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── pt-PT │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── pt │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── pt_BR │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── pt_PT │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── ro │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── ru │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── sk │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── sl │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── sr │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── sv │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── sw │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── th │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── tr │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── uk │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── vi │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── zh-CN │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── zh-TW │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── zh │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── zh_CN │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ └── zh_TW │ │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ │ ├── content.js │ │ │ │ │ │ │ ├── icon_128.png │ │ │ │ │ │ │ ├── icon_16.png │ │ │ │ │ │ │ ├── icon_19.png │ │ │ │ │ │ │ ├── manifest.json │ │ │ │ │ │ │ ├── options.html │ │ │ │ │ │ │ ├── options.js │ │ │ │ │ │ │ ├── spin.gif │ │ │ │ │ │ │ └── toolbar_icons │ │ │ │ │ │ │ ├── 1_1.png │ │ │ │ │ │ │ ├── 1_10.png │ │ │ │ │ │ │ ├── 1_11.png │ │ │ │ │ │ │ ├── 1_1_i.png │ │ │ │ │ │ │ ├── 1_2.png │ │ │ │ │ │ │ ├── 1_2_i.png │ │ │ │ │ │ │ ├── 1_3.png │ │ │ │ │ │ │ ├── 1_3_i.png │ │ │ │ │ │ │ ├── 1_4.png │ │ │ │ │ │ │ ├── 1_4_i.png │ │ │ │ │ │ │ ├── 1_5.png │ │ │ │ │ │ │ ├── 1_5_i.png │ │ │ │ │ │ │ ├── 1_6.png │ │ │ │ │ │ │ ├── 1_6_i.png │ │ │ │ │ │ │ ├── 1_7.png │ │ │ │ │ │ │ ├── 1_7_i.png │ │ │ │ │ │ │ ├── 1_8.png │ │ │ │ │ │ │ ├── 1_8_i.png │ │ │ │ │ │ │ ├── 1_9.png │ │ │ │ │ │ │ ├── 2_1.png │ │ │ │ │ │ │ ├── 2_10.png │ │ │ │ │ │ │ ├── 2_11.png │ │ │ │ │ │ │ ├── 2_1_i.png │ │ │ │ │ │ │ ├── 2_2.png │ │ │ │ │ │ │ ├── 2_2_i.png │ │ │ │ │ │ │ ├── 2_3.png │ │ │ │ │ │ │ ├── 2_3_i.png │ │ │ │ │ │ │ ├── 2_4.png │ │ │ │ │ │ │ ├── 2_4_i.png │ │ │ │ │ │ │ ├── 2_5.png │ │ │ │ │ │ │ ├── 2_5_i.png │ │ │ │ │ │ │ ├── 2_6.png │ │ │ │ │ │ │ ├── 2_6_i.png │ │ │ │ │ │ │ ├── 2_7.png │ │ │ │ │ │ │ ├── 2_7_i.png │ │ │ │ │ │ │ ├── 2_8.png │ │ │ │ │ │ │ ├── 2_8_i.png │ │ │ │ │ │ │ └── 2_9.png │ │ │ │ │ └── nmmhkkegccagdldgiimedpiccmgmieda │ │ │ │ │ │ └── 1.0.0.0_0 │ │ │ │ │ │ ├── _locales │ │ │ │ │ │ ├── bg │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ ├── ca │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ ├── cs │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ ├── da │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ ├── de │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ ├── el │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ ├── en │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ ├── en_GB │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ ├── es │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ ├── es_419 │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ ├── et │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ ├── fi │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ ├── fil │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ ├── fr │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ ├── hi │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ ├── hr │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ ├── hu │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ ├── id │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ ├── it │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ ├── ja │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ ├── ko │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ ├── lt │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ ├── lv │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ ├── nb │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ ├── nl │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ ├── pl │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ ├── pt_BR │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ ├── pt_PT │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ ├── ro │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ ├── ru │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ ├── sk │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ ├── sl │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ ├── sr │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ ├── sv │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ ├── th │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ ├── tr │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ ├── uk │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ ├── vi │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ ├── zh_CN │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ └── zh_TW │ │ │ │ │ │ │ └── messages.json │ │ │ │ │ │ ├── _metadata │ │ │ │ │ │ └── verified_contents.json │ │ │ │ │ │ ├── craw_background.js │ │ │ │ │ │ ├── craw_window.js │ │ │ │ │ │ ├── css │ │ │ │ │ │ └── craw_window.css │ │ │ │ │ │ ├── html │ │ │ │ │ │ └── craw_window.html │ │ │ │ │ │ ├── images │ │ │ │ │ │ ├── flapper.gif │ │ │ │ │ │ ├── icon_128.png │ │ │ │ │ │ ├── icon_16.png │ │ │ │ │ │ ├── topbar_floating_button.png │ │ │ │ │ │ ├── topbar_floating_button_close.png │ │ │ │ │ │ ├── topbar_floating_button_hover.png │ │ │ │ │ │ ├── topbar_floating_button_maximize.png │ │ │ │ │ │ └── topbar_floating_button_pressed.png │ │ │ │ │ │ └── manifest.json │ │ │ │ ├── Favicons │ │ │ │ ├── Favicons-journal │ │ │ │ ├── GPUCache │ │ │ │ │ ├── data_0 │ │ │ │ │ ├── data_1 │ │ │ │ │ ├── data_2 │ │ │ │ │ ├── data_3 │ │ │ │ │ └── index │ │ │ │ ├── History │ │ │ │ ├── History-journal │ │ │ │ ├── Local Storage │ │ │ │ │ ├── chrome-extension_mclkkofklkfljcocdinagocijmpgbhab_0.localstorage │ │ │ │ │ ├── chrome-extension_mclkkofklkfljcocdinagocijmpgbhab_0.localstorage-journal │ │ │ │ │ ├── chrome-extension_mjocghlclkpgheifflemilcnblodjohg_0.localstorage │ │ │ │ │ ├── chrome-extension_mjocghlclkpgheifflemilcnblodjohg_0.localstorage-journal │ │ │ │ │ ├── https_chrome.google.com_0.localstorage │ │ │ │ │ └── https_chrome.google.com_0.localstorage-journal │ │ │ │ ├── Login Data │ │ │ │ ├── Login Data-journal │ │ │ │ ├── Managed Mode Settings │ │ │ │ ├── Network Action Predictor │ │ │ │ ├── Network Action Predictor-journal │ │ │ │ ├── Network Persistent State │ │ │ │ ├── Origin Bound Certs │ │ │ │ ├── Origin Bound Certs-journal │ │ │ │ ├── Platform Notifications │ │ │ │ │ ├── 000003.log │ │ │ │ │ ├── CURRENT │ │ │ │ │ ├── LOCK │ │ │ │ │ ├── LOG │ │ │ │ │ └── MANIFEST-000001 │ │ │ │ ├── Preferences │ │ │ │ ├── QuotaManager │ │ │ │ ├── QuotaManager-journal │ │ │ │ ├── README │ │ │ │ ├── Secure Preferences │ │ │ │ ├── Service Worker │ │ │ │ │ ├── Database │ │ │ │ │ │ ├── 000003.log │ │ │ │ │ │ ├── CURRENT │ │ │ │ │ │ ├── LOCK │ │ │ │ │ │ ├── LOG │ │ │ │ │ │ └── MANIFEST-000001 │ │ │ │ │ └── ScriptCache │ │ │ │ │ │ ├── index │ │ │ │ │ │ └── index-dir │ │ │ │ │ │ └── the-real-index │ │ │ │ ├── Session Storage │ │ │ │ │ ├── 000003.log │ │ │ │ │ ├── CURRENT │ │ │ │ │ ├── LOCK │ │ │ │ │ ├── LOG │ │ │ │ │ └── MANIFEST-000001 │ │ │ │ ├── Shortcuts │ │ │ │ ├── Shortcuts-journal │ │ │ │ ├── Thumbnails │ │ │ │ │ ├── 000003.log │ │ │ │ │ ├── CURRENT │ │ │ │ │ ├── LOCK │ │ │ │ │ ├── LOG │ │ │ │ │ └── MANIFEST-000001 │ │ │ │ ├── Top Sites │ │ │ │ ├── Top Sites-journal │ │ │ │ ├── TransportSecurity │ │ │ │ ├── User StyleSheets │ │ │ │ │ └── Custom.css │ │ │ │ ├── Visited Links │ │ │ │ ├── Web Data │ │ │ │ ├── Web Data-journal │ │ │ │ ├── data_reduction_proxy_leveldb │ │ │ │ │ ├── 000003.log │ │ │ │ │ ├── CURRENT │ │ │ │ │ ├── LOCK │ │ │ │ │ ├── LOG │ │ │ │ │ └── MANIFEST-000001 │ │ │ │ └── databases │ │ │ │ │ ├── Databases.db │ │ │ │ │ └── Databases.db-journal │ │ │ │ ├── Dictionaries │ │ │ │ ├── en-US-2-3.bdic │ │ │ │ └── en-US-7-1.bdic │ │ │ │ ├── First Run │ │ │ │ ├── Local State │ │ │ │ ├── Safe Browsing Channel IDs │ │ │ │ ├── Safe Browsing Channel IDs-journal │ │ │ │ ├── Safe Browsing Cookies │ │ │ │ ├── Safe Browsing Cookies-journal │ │ │ │ ├── Service State │ │ │ │ └── ShaderCache │ │ │ │ └── GPUCache │ │ │ │ ├── data_0 │ │ │ │ ├── data_1 │ │ │ │ ├── data_2 │ │ │ │ ├── data_3 │ │ │ │ └── index │ │ ├── handlers │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ └── templates │ │ │ ├── config.py │ │ │ ├── i3config.conf │ │ │ ├── run_chromium.sh │ │ │ └── timezone.txt │ ├── splitscreen │ │ ├── tasks │ │ │ └── main.yml │ │ └── templates │ │ │ └── i3config.conf │ ├── ubuntu-docker │ │ └── tasks │ │ │ └── main.yml │ └── untitled.txt └── secrets.yml ├── bin └── discover_topics ├── components ├── AirportWeather.coffee ├── AlienAlarm.yml ├── AlienAlarmOnScreen.py ├── BarAnnouncer.py ├── BigSwitch.yml ├── CrewOnline.py ├── DetectABBA.py ├── DetectCircle.py ├── DiscoAnimation.py ├── EventCalendar.py ├── EventColors.py ├── FeinstaubSensor.yml ├── Gate.py ├── GetLuftJetzt.py ├── HighPower.py ├── IgniteMainhall.py ├── LaunchAnnouncer.py ├── Matelight.py ├── NetworkBars.py ├── OnlineHeatmap.py ├── PioneerPlaque.yml ├── Replicator.py ├── SendToLuftDaten.py ├── StationAnnouncer.yml ├── Vacuum.yml ├── VisualPaging.py ├── barstatus.yml ├── boardingurl.py ├── buttonpanel.yml ├── c-beam-viewer.yml ├── c_out.yml ├── crew.yml ├── dmx.yml ├── echelon.yml ├── farbdmx.py ├── farbgeber.py ├── farbhue.py ├── infodisplay.yml ├── ingress-data.yml ├── ingress-lights.yml ├── ingress-portal.yml ├── mqttwebview.yml ├── music-player.yml ├── nerdctrl.yml ├── panel.yml ├── pedestrianlight.yml ├── playsound.yml ├── powermon.yml ├── statuslight.yml ├── time.yml └── togglelights.py ├── devices ├── BigSwitch │ ├── .gitignore │ ├── BigSwitch.ino │ └── config.h.sample ├── CoTwoSensor │ └── CoTwoSensore.ino ├── PioneerPlaque │ ├── PioneerPlaque.ino │ ├── README.md │ ├── cbase-nopulsar-final-scaled.svg │ └── config.h.sample ├── alien-alarm │ ├── .gitignore │ ├── alien-alarm.ino │ └── config.h.sample ├── alien-sign │ ├── Arduino │ │ └── McLighting │ │ │ ├── McLighting.ino │ │ │ ├── colormodes.h │ │ │ ├── data │ │ │ ├── edit.htm.gz │ │ │ ├── favicon.ico │ │ │ ├── graphs.js.gz │ │ │ ├── index.htm │ │ │ └── index2.htm │ │ │ ├── definitions.h │ │ │ ├── request_handlers.h │ │ │ ├── spiffs_webserver.h │ │ │ ├── version.h │ │ │ └── version_info.ino │ ├── LICENSE │ ├── README.md │ ├── clients │ │ ├── Android │ │ │ ├── McLightningApp.aia │ │ │ └── McLightningApp.apk │ │ ├── AutoHotKey │ │ │ ├── LICENSE │ │ │ ├── LedKeyboardShortcuts.ahk │ │ │ └── README.md │ │ ├── HomeAssistant │ │ │ └── light.yaml │ │ ├── homebridge │ │ │ └── config.json │ │ ├── node_red │ │ │ └── websocket_proxy.json │ │ ├── pebble │ │ │ ├── McLighting.pbw │ │ │ ├── configuration_page │ │ │ │ ├── .firebaserc │ │ │ │ ├── database.rules.json │ │ │ │ ├── firebase.json │ │ │ │ └── public │ │ │ │ │ ├── 404.html │ │ │ │ │ ├── css │ │ │ │ │ ├── slate.css │ │ │ │ │ └── slate.min.css │ │ │ │ │ ├── fonts │ │ │ │ │ ├── pfdindisplaypro-regular.woff │ │ │ │ │ └── ptsans-regular.woff │ │ │ │ │ ├── index.html │ │ │ │ │ └── js │ │ │ │ │ ├── slate.js │ │ │ │ │ └── slate.min.js │ │ │ └── watchapp │ │ │ │ ├── appinfo.json │ │ │ │ └── src │ │ │ │ └── app.js │ │ └── web │ │ │ ├── build │ │ │ └── index.htm │ │ │ ├── gulpfile.js │ │ │ ├── package.json │ │ │ └── src │ │ │ ├── index.htm │ │ │ └── js │ │ │ └── script.js │ ├── documentation │ │ ├── fritzing │ │ │ ├── McLighting-NodeMCU_Board.fzz │ │ │ └── McLighting-NodeMCU_Board_Levelshifter.fzz │ │ ├── pcb │ │ │ ├── Gerber.zip │ │ │ ├── PCB_Schematic.pdf │ │ │ └── Photo View.svg │ │ ├── pics │ │ │ ├── McLighting-NodeMCU_Board.png │ │ │ ├── McLighting-NodeMCU_Board_Levelshifter.png │ │ │ ├── arduino_boards_manager.png │ │ │ ├── arduino_preferences.png │ │ │ ├── board_settings.png │ │ │ └── captive_mqtt.png │ │ └── slides │ │ │ └── Ein SmartLight im Selbstbau für unter 15 €_Pi and More 9.pdf │ └── platformio.ini ├── arboretumsensor │ └── sensor.ino ├── bar-status │ ├── .gitignore │ ├── bar-status.ino │ └── config.h.sample ├── c-boom │ └── c-boom.ino ├── c-interface │ └── c-interface.ino ├── c_lab │ └── c_lab_lightsensor.ino ├── c_leuse │ └── c_leuse.ino ├── crash-button │ ├── .gitignore │ ├── config.h.sample │ └── crash-button.ino ├── door │ └── door.ino ├── drinks-status │ ├── .gitignore │ ├── config.h.sample │ └── drinks-status.ino ├── msgflo-vacuum │ └── msgflo-vacuum.ino ├── soundlab │ └── sensor.ino ├── spreesensor │ └── spreesensor.ino ├── weltenbausensor │ ├── .gitignore │ ├── config.h.sample │ └── weltenbausensor.ino ├── werkstattonair │ ├── .gitignore │ ├── config.h.sample │ └── werkstattonair.ino ├── wifi-quality │ ├── config.h.sample │ └── wifi-quality.ino └── workshopsensor │ └── sensor.ino ├── docker-compose-raspberrypi3.yml ├── docker-compose.yml ├── graphs └── main.json ├── package.json ├── requirements.pip ├── spec ├── AirportWeather.yaml ├── BarAnnouncer.yaml ├── DetectABBA.yaml ├── DetectCircle.yaml ├── EventColors.yaml └── boardingurl.yaml └── systemd ├── c-flo-foreign.service └── c-flo.service /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json 3 | npm-debug.log 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | npm-debug.log 3 | package-lock.json 4 | fbp.json 5 | /components/*.pyc 6 | /components/*.swp 7 | /components/__pycache__ 8 | /devices/*/*.h 9 | .DS_Store 10 | -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- 1 | [TYPECHECK] 2 | generated-members=walk 3 | -------------------------------------------------------------------------------- /ansible/.gitignore: -------------------------------------------------------------------------------- 1 | c-flo.retry 2 | openmct.retry 3 | .vaultpass 4 | -------------------------------------------------------------------------------- /ansible/Makefile: -------------------------------------------------------------------------------- 1 | deploy: 2 | ansible-playbook -i hosts --vault-pass .vaultpass c-flo.yml 3 | 4 | vault: 5 | ansible-vault --vault-pass .vaultpass edit secrets.yml 6 | 7 | 35c3: 8 | ansible-playbook -i hosts --vault-pass .vaultpass c-flo.yml -l north-display,west-display,east-display,south-display,c-lab-display,mainhall-display,soundlab-display,weltenbau-display 9 | 10 | c-flo: 11 | ansible-playbook -i hosts --vault-pass .vaultpass c-flo.yml -l c-flo 12 | 13 | .PHONY: deploy 35c3 c-flo vault deploy 14 | -------------------------------------------------------------------------------- /ansible/c-flo.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # This playbook deploys the whole application stack in this site. 3 | - import_playbook: infoscreens.yml 4 | - import_playbook: msgflo.yml 5 | - import_playbook: openmct.yml 6 | -------------------------------------------------------------------------------- /ansible/group_vars/alarmpis.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # Variables listed here are applicable to only archlinuxarm.org systems 3 | ansible_ssh_user: sascha 4 | -------------------------------------------------------------------------------- /ansible/group_vars/all.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # Variables listed here are applicable to all host groups 3 | 4 | ansible_ssh_private_key: deploy.pem 5 | project_name: mqttwebview 6 | repository: https://github.com/c-base/mqttwebview.git 7 | email_host: c-mail.c-base.org 8 | msgflo_role: "{{ ansible_nodename }}" 9 | use_kiosk: true 10 | timezone: "Europe/Berlin" 11 | -------------------------------------------------------------------------------- /ansible/group_vars/raspbians.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # Variables listed here are applicable to only raspbian systems 3 | 4 | ansible_ssh_user: pi 5 | display_user: pi 6 | project_root: /home/{{ display_user }}/mqttwebview 7 | repository: https://github.com/c-base/mqttwebview.git 8 | display_manager: lightdm 9 | -------------------------------------------------------------------------------- /ansible/host_vars/bar-display.yml: -------------------------------------------------------------------------------- 1 | --- 2 | important_urls: 3 | - "http://c-flo.cbrp3.c-base.org/bar-status/" 4 | 5 | urls: 6 | - "http://c-flo.cbrp3.c-base.org/mainhall-music/" 7 | - "http://c-flo.cbrp3.c-base.org/events/" 8 | - "http://c-flo.cbrp3.c-base.org/bar-history/" 9 | - "http://c-flo.cbrp3.c-base.org/mainhall-music/" 10 | - "http://c-flo.cbrp3.c-base.org/bar-status/" 11 | - "http://c-flo.cbrp3.c-base.org/events/" 12 | -------------------------------------------------------------------------------- /ansible/host_vars/c-lab-display.yml: -------------------------------------------------------------------------------- 1 | --- 2 | important_urls: 3 | - "http://c-flo.cbrp3.c-base.org/c_lab/" 4 | 5 | urls: 6 | - "http://c-flo.cbrp3.c-base.org/internet/" 7 | - "http://c-flo.cbrp3.c-base.org/c_lab-music/" 8 | - "http://c-flo.cbrp3.c-base.org/events/" 9 | - "http://c-flo.cbrp3.c-base.org/bar-history/" 10 | - "http://c-flo.cbrp3.c-base.org/c_lab/" 11 | -------------------------------------------------------------------------------- /ansible/host_vars/c-leuse-display.yml: -------------------------------------------------------------------------------- 1 | --- 2 | important_urls: 3 | - "http://c-flo.cbrp3.c-base.org/events/" 4 | 5 | urls: 6 | - "http://c-flo.cbrp3.c-base.org/events" 7 | -------------------------------------------------------------------------------- /ansible/host_vars/he1-terminal.yml: -------------------------------------------------------------------------------- 1 | --- 2 | important_urls: 3 | - "https://c-beam.cbrp3.c-base.org/he1display" 4 | 5 | urls: 6 | - "https://c-beam.cbrp3.c-base.org/weather" 7 | - "https://c-beam.cbrp3.c-base.org/he1display" 8 | - "https://c-beam.cbrp3.c-base.org/bvg" 9 | - "https://c-beam.cbrp3.c-base.org/he1display" 10 | 11 | msgflo_role: "he1" 12 | -------------------------------------------------------------------------------- /ansible/host_vars/he2-display.yml: -------------------------------------------------------------------------------- 1 | --- 2 | important_urls: 3 | - "http://c-flo.cbrp3.c-base.org/he2/" 4 | 5 | urls: 6 | - "http://c-flo.cbrp3.c-base.org/events/" 7 | - "http://c-flo.cbrp3.c-base.org/he2/" 8 | - "http://c-flo.cbrp3.c-base.org/bar-status/" 9 | - "http://c-flo.cbrp3.c-base.org/he2/" 10 | -------------------------------------------------------------------------------- /ansible/host_vars/mainhall-display.yml: -------------------------------------------------------------------------------- 1 | --- 2 | important_urls: 3 | - "http://c-flo.cbrp3.c-base.org/mainhall/" 4 | 5 | urls: 6 | - "http://c-flo.cbrp3.c-base.org/mainhall-music/" 7 | - "http://c-flo.cbrp3.c-base.org/events/" 8 | - "http://c-flo.cbrp3.c-base.org/bar-history/" 9 | - "http://c-flo.cbrp3.c-base.org/mainhall/" 10 | - "http://c-flo.cbrp3.c-base.org/events/" 11 | -------------------------------------------------------------------------------- /ansible/host_vars/mainhall-mirror-display.yml: -------------------------------------------------------------------------------- 1 | --- 2 | important_urls: 3 | - "http://c-flo.cbrp3.c-base.org/mainhall/" 4 | 5 | urls: 6 | - "http://c-flo.cbrp3.c-base.org/video?base-full-loop-1-green-blue" 7 | - "http://c-flo.cbrp3.c-base.org/mainhall-music/" 8 | - "http://c-flo.cbrp3.c-base.org/events/" 9 | - "http://c-flo.cbrp3.c-base.org/bar-history/" 10 | - "http://c-flo.cbrp3.c-base.org/video?base-full-loop-1-green-blue" 11 | - "http://c-flo.cbrp3.c-base.org/mainhall/" 12 | - "http://c-flo.cbrp3.c-base.org/mainhall-music/" 13 | - "http://c-flo.cbrp3.c-base.org/events/" 14 | -------------------------------------------------------------------------------- /ansible/host_vars/mechblast.yml: -------------------------------------------------------------------------------- 1 | --- 2 | important_urls: 3 | # - "https://c-beam.cbrp3.c-base.org/mechdisplay" 4 | - "http://c-flo.cbrp3.c-base.org/workshop/" 5 | 6 | urls: 7 | - "http://c-flo.cbrp3.c-base.org/workshop-music/" 8 | - "http://c-flo.cbrp3.c-base.org/events/" 9 | - "http://c-flo.cbrp3.c-base.org/workshop/" 10 | 11 | msgflo_role: "mechblast-display" 12 | -------------------------------------------------------------------------------- /ansible/host_vars/nerdarea-display.yml: -------------------------------------------------------------------------------- 1 | --- 2 | important_urls: 3 | - "http://c-flo.cbrp3.c-base.org/nerdarea-music/" 4 | 5 | urls: 6 | - "http://c-flo.cbrp3.c-base.org/events/" 7 | - "http://c-flo.cbrp3.c-base.org/nerdarea/" 8 | - "http://c-flo.cbrp3.c-base.org/bar-status/" 9 | - "http://c-flo.cbrp3.c-base.org/nerdarea-music/" 10 | - "http://c-flo.cbrp3.c-base.org/bar-history/" 11 | -------------------------------------------------------------------------------- /ansible/host_vars/nerdctrl.yml: -------------------------------------------------------------------------------- 1 | --- 2 | #important_urls: 3 | # - "http://siri.cbrp3.c-base.org/" 4 | # - "http://siri.cbrp3.c-base.org:8080/ipfs/QmawVyLHjR8qmYXd5GZgKUPhvnzDsJko1g6H8mkHzLKNij/" 5 | 6 | urls: 7 | - "http://c-flo.cbrp3.c-base.org/bar-status/" 8 | - "http://c-flo.cbrp3.c-base.org/nerdarea/" 9 | - "http://c-flo.cbrp3.c-base.org/events/" 10 | - "http://c-flo.cbrp3.c-base.org/nerdarea-music/" 11 | - "http://c-flo.cbrp3.c-base.org/bar-history/" 12 | - "http://c-flo.cbrp3.c-base.org/events/" 13 | 14 | ansible_ssh_user: uk 15 | display_user: nerdctrl 16 | project_root: /home/{{ display_user }}/mqttwebview 17 | use_kiosk: false 18 | msgflo_role: nerdctrl-display 19 | display_manager: lxdm 20 | 21 | -------------------------------------------------------------------------------- /ansible/host_vars/openmct.yml: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_ssh_user: uk -------------------------------------------------------------------------------- /ansible/host_vars/siri.yml: -------------------------------------------------------------------------------- 1 | --- 2 | important_urls: 3 | - "http://siri.cbrp3.c-base.org/" 4 | - "http://siri.cbrp3.c-base.org:8080/ipfs/QmawVyLHjR8qmYXd5GZgKUPhvnzDsJko1g6H8mkHzLKNij/" 5 | 6 | urls: 7 | - "http://www.c-base.org" 8 | - "http://logbuch.c-base.org/" 9 | - "http://siri.cbrp3.c-base.org:8080/ipfs/QmawVyLHjR8qmYXd5GZgKUPhvnzDsJko1g6H8mkHzLKNij/" 10 | - "https://c-beam.cbrp3.c-base.org/missions" 11 | - "https://c-beam.cbrp3.c-base.org/sensors" 12 | - "http://siri.cbrp3.c-base.org:8080/ipfs/QmawVyLHjR8qmYXd5GZgKUPhvnzDsJko1g6H8mkHzLKNij/" 13 | - "http://c-flo.cbrp3.c-base.org/weltenbaulab/" 14 | - "http://c-flo.cbrp3.c-base.org/events/" 15 | 16 | ansible_ssh_user: uk 17 | display_user: siri 18 | project_root: /home/{{ display_user }}/mqttwebview 19 | -------------------------------------------------------------------------------- /ansible/host_vars/soundlab-display.yml: -------------------------------------------------------------------------------- 1 | --- 2 | important_urls: 3 | - "http://c-flo.cbrp3.c-base.org/soundlab" 4 | 5 | urls: 6 | - "http://c-flo.cbrp3.c-base.org/events/" 7 | - "http://c-flo.cbrp3.c-base.org/soundlab" 8 | - "http://c-flo.cbrp3.c-base.org/bar-history/" 9 | - "http://c-flo.cbrp3.c-base.org/soundlab" 10 | -------------------------------------------------------------------------------- /ansible/host_vars/weltenbau-display.yml: -------------------------------------------------------------------------------- 1 | --- 2 | important_urls: 3 | - "http://c-flo.cbrp3.c-base.org/weltenbaulab/" 4 | 5 | urls: 6 | - "http://c-flo.cbrp3.c-base.org/events/" 7 | - "http://c-flo.cbrp3.c-base.org/weltenbaulab/" 8 | - "http://c-flo.cbrp3.c-base.org/internet/" 9 | - "http://c-flo.cbrp3.c-base.org/bar-status/" 10 | - "http://c-flo.cbrp3.c-base.org/weltenbaulab-music/" 11 | -------------------------------------------------------------------------------- /ansible/infoscreens.yml: -------------------------------------------------------------------------------- 1 | --- 2 | - name: station info screens 3 | hosts: raspbians 4 | roles: 5 | - raspbian 6 | - lightdm 7 | - fullscreen 8 | 9 | - name: station legacy info screens 10 | hosts: lxdms 11 | roles: 12 | - raspbian 13 | - splitscreen 14 | -------------------------------------------------------------------------------- /ansible/mfs_backup_rsa.pub: -------------------------------------------------------------------------------- 1 | ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDrNuW86KVWZYl8CINzTg/YXSCNhaSKqf6uVbSaBfHWUi0YenHFxTQExJ08EBGs9B/tl1Jk7J5eMOSDrRo7sHwQ5V49mY0ZQYbHqck7c78aD+OI/CHyK9ITBLSl2rUAyWk/7hvGNSWqlGtQ8Z/FJf3QLmVpRIbAbaMPk9LKUCk55P1ApQK9+z7FZtaaf0A9+b7nchXp5b+Z5SOIvm68i7mOwMcFGpsMw8BUgNTBnSHs/H2929Sv0RfkNQIPqLFIlSABDPPS98katXE2It/GtSb4vQjX+zmYkwV3m8HCtByKSfjjGZuthQMD9pqDzY/JiMCMlO0oYN59RZkhZphs+rGP uk@crew0-185.cbrp3.c-base.org 2 | -------------------------------------------------------------------------------- /ansible/roles/arch-docker/tasks/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | - name: Install Docker 3 | become: yes 4 | become_user: root 5 | pacman: 6 | name: docker 7 | state: present 8 | update_cache: yes 9 | 10 | - name: Ensure that Docker runs 11 | become: yes 12 | become_user: root 13 | systemd: 14 | name: docker 15 | state: started 16 | enabled: yes 17 | -------------------------------------------------------------------------------- /ansible/roles/docker-systemd/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | container_description: "{{ container_name }} in Docker container" 3 | container_pull: true 4 | container_cmd: "" 5 | container_service_name: "container-{{ container_name }}.service" 6 | container_repository: "{{ container_name }}" 7 | container_image: "{{ container_repository }}" 8 | container_ports: [] 9 | container_volumes: [] 10 | container_extra_options: [] 11 | container_environment: [] 12 | container_after: "docker.service" 13 | -------------------------------------------------------------------------------- /ansible/roles/docker-systemd/tasks/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | - name: Create service file 4 | template: 5 | dest: "/etc/systemd/system/{{ container_service_name }}" 6 | src: "systemd-container.service" 7 | register: service_config 8 | become: yes 9 | 10 | - name: Reload daemon 11 | shell: systemctl daemon-reload 12 | when: service_config.changed 13 | become: yes 14 | 15 | - name: Restart service 16 | service: 17 | name: "{{ container_service_name }}" 18 | state: restarted 19 | when: service_config.changed 20 | become: yes 21 | 22 | - name: Enable service 23 | service: 24 | name: "{{ container_service_name }}" 25 | state: started 26 | enabled: yes 27 | become: yes 28 | -------------------------------------------------------------------------------- /ansible/roles/docker-systemd/templates/backup.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | NOW=$(date +%Y%m%d%H%M) 4 | YESTERDAY=$(date -v -1d +%Y%m%d) 5 | 6 | # Backup Configuration 7 | BACKUP_HOME="mfs.cbrp3.c-base.org:/backups/influxdb" 8 | CURRENT_LINK="$BACKUP_HOME/current" 9 | SNAPSHOT_DIR="/tmp/snapshots" 10 | 11 | # Folder to backup 12 | BACKUP_SOURCE_DIR="/var/influxdb" 13 | 14 | # Init the folder structure 15 | mkdir -p $SNAPSHOT_DIR &> /dev/null 16 | 17 | tar cfv "$SNAPSHOT_DIR/$NOW.tar" $BACKUP_SOURCE_DIR 18 | 19 | rsync -avz -e "ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null" --progress \ 20 | $SNAPSHOT_DIR/$NOW.tar $BACKUP_HOME 21 | 22 | # && ln -snf $(ls -1d $SNAPSHOT_DIR/* | tail -n1) $CURRENT_LINK 23 | -------------------------------------------------------------------------------- /ansible/roles/fullscreen/tasks/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # These tasks installs i3 and chromium in fullscreen-mode 3 | 4 | - name: Select i3 as default window manager 5 | become: yes 6 | become_user: root 7 | alternatives: 8 | name: x-window-manager 9 | path: /usr/bin/i3 10 | tags: config 11 | 12 | - name: Create directory for i3 config 13 | become: yes 14 | become_user: root 15 | file: path=/home/{{ display_user }}/.i3 state=directory owner={{ display_user }} 16 | tags: i3,config 17 | 18 | - name: Upload i3 config file. 19 | become: yes 20 | become_user: root 21 | template: src=i3config.conf dest=/home/{{ display_user }}/.i3/config mode=0644 22 | notify: 23 | - Restart lightdm 24 | tags: config 25 | 26 | -------------------------------------------------------------------------------- /ansible/roles/influxdb-docker-backup/templates/backup.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | NOW=$(date +%Y%m%d%H%M) 4 | 5 | # Backup Configuration 6 | BACKUP_HOME="openmct@mfs.cbrp3.c-base.org:/usr/home/openmct/backup" 7 | CURRENT_LINK="$BACKUP_HOME/current" 8 | SNAPSHOT_DIR="$BACKUP_HOME/$NOW" 9 | 10 | # Folder to backup 11 | BACKUP_SOURCE_DIR="/tmp/influxdbbackup/" 12 | 13 | sudo rm /tmp/influxdbbackup/cbeam.backup -rf 14 | sudo docker exec influxdb influxd backup -portable -start `date -d "yesterday 0:00" '+%Y-%m-%dT%H:%M:%SZ'` -database cbeam /backup/cbeam.backup 15 | sudo chown -R sascha:sascha /tmp/influxdbbackup/ 16 | 17 | rsync -avz -e "ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null" --progress \ 18 | $BACKUP_SOURCE_DIR $SNAPSHOT_DIR 19 | 20 | sudo rm /tmp/influxdbbackup/cbeam.backup -rf 21 | -------------------------------------------------------------------------------- /ansible/roles/influxdb-docker-backup/templates/influx-backup.service: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=Backup influxdb 3 | Requires=docker.service 4 | 5 | [Service] 6 | Type=oneshot 7 | ExecStart=/home/sascha/backup.sh 8 | User=sascha 9 | Group=sascha -------------------------------------------------------------------------------- /ansible/roles/influxdb-docker-backup/templates/influx-backup.timer: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=Run influx-backup daily 3 | 4 | [Timer] 5 | OnCalendar=daily 6 | Persistent=true 7 | 8 | [Install] 9 | WantedBy=timers.target -------------------------------------------------------------------------------- /ansible/roles/lightdm/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # Any module can be used for the handler action 3 | - name: Restart lightdm 4 | become: yes 5 | become_user: root 6 | action: service name=lightdm state=restarted enabled=true 7 | 8 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Avatars/avatar_generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Avatars/avatar_generic.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Certificate Revocation Lists: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Certificate Revocation Lists -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Archived History: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Archived History -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Archived History-journal: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Cookies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Cookies -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Cookies-journal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Cookies-journal -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Current Session: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Current Session -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Current Tabs: -------------------------------------------------------------------------------- 1 | SNSS -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extension Rules/000003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extension Rules/000003.log -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extension Rules/CURRENT: -------------------------------------------------------------------------------- 1 | MANIFEST-000001 2 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extension Rules/LOCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extension Rules/LOCK -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extension Rules/LOG: -------------------------------------------------------------------------------- 1 | 2016/11/16-15:52:34.956 917 Reusing MANIFEST /home/pi/.config/chromium/Default/Extension Rules/MANIFEST-000001 2 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extension Rules/MANIFEST-000001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extension Rules/MANIFEST-000001 -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extension State/000006.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extension State/000006.log -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extension State/CURRENT: -------------------------------------------------------------------------------- 1 | MANIFEST-000004 2 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extension State/LOCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extension State/LOCK -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extension State/LOG: -------------------------------------------------------------------------------- 1 | 2016/11/16-15:52:35.566 917 Reusing MANIFEST /home/pi/.config/chromium/Default/Extension State/MANIFEST-000004 2 | 2016/11/16-15:52:35.566 917 Recovering log #6 3 | 2016/11/16-15:52:35.566 917 Reusing old log /home/pi/.config/chromium/Default/Extension State/000006.log 4 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extension State/MANIFEST-000004: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extension State/MANIFEST-000004 -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/cihohekcekjgjdkeljpkbaaecgfoimbj/1.0.1_0/Cached Theme Material Design.pak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/cihohekcekjgjdkeljpkbaaecgfoimbj/1.0.1_0/Cached Theme Material Design.pak -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/cihohekcekjgjdkeljpkbaaecgfoimbj/1.0.1_0/Cached Theme.pak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/cihohekcekjgjdkeljpkbaaecgfoimbj/1.0.1_0/Cached Theme.pak -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/cihohekcekjgjdkeljpkbaaecgfoimbj/1.0.1_0/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/cihohekcekjgjdkeljpkbaaecgfoimbj/1.0.1_0/images/bg.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/cihohekcekjgjdkeljpkbaaecgfoimbj/1.0.1_0/images/bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/cihohekcekjgjdkeljpkbaaecgfoimbj/1.0.1_0/images/bg2.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/cihohekcekjgjdkeljpkbaaecgfoimbj/1.0.1_0/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/cihohekcekjgjdkeljpkbaaecgfoimbj/1.0.1_0/images/button.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/cihohekcekjgjdkeljpkbaaecgfoimbj/1.0.1_0/images/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/cihohekcekjgjdkeljpkbaaecgfoimbj/1.0.1_0/images/frame.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/cihohekcekjgjdkeljpkbaaecgfoimbj/1.0.1_0/images/frame_incog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/cihohekcekjgjdkeljpkbaaecgfoimbj/1.0.1_0/images/frame_incog.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/cihohekcekjgjdkeljpkbaaecgfoimbj/1.0.1_0/images/tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/cihohekcekjgjdkeljpkbaaecgfoimbj/1.0.1_0/images/tab.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/cihohekcekjgjdkeljpkbaaecgfoimbj/1.0.1_0/images/tab_incog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/cihohekcekjgjdkeljpkbaaecgfoimbj/1.0.1_0/images/tab_incog.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/cihohekcekjgjdkeljpkbaaecgfoimbj/1.0.1_0/images/toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/cihohekcekjgjdkeljpkbaaecgfoimbj/1.0.1_0/images/toolbar.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/gleekbfjekiniecknbkamfmkohkpodhe/1.1_0/background.js: -------------------------------------------------------------------------------- 1 | var HEADERS_TO_STRIP_LOWERCASE = [ 2 | 'content-security-policy', 3 | 'x-frame-options', 4 | ]; 5 | 6 | chrome.webRequest.onHeadersReceived.addListener( 7 | function(details) { 8 | return { 9 | responseHeaders: details.responseHeaders.filter(function(header) { 10 | return HEADERS_TO_STRIP_LOWERCASE.indexOf(header.name.toLowerCase()) < 0; 11 | }) 12 | }; 13 | }, { 14 | urls: [""] 15 | }, ["blocking", "responseHeaders"]); 16 | 17 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/gleekbfjekiniecknbkamfmkohkpodhe/1.1_0/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "background": { 3 | "scripts": [ "background.js" ] 4 | }, 5 | "description": "Drops X-Frame-Options and Content-Security-Policy HTTP response headers, allowing all pages to be iframed.", 6 | "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDysh7qP/8H9qUMb0R9BZbk2NDirtNgRyo9AEh9C5HFcoMELEzJ/M/sCqn/yDM/Z7GK3t+w02zCeTBknLEUwgFL9kRxVV4s1kfgbijVHTSJkII6OjqiWDPkDeyMJ1oOr156Rct2bp2MAwOf0Tk1bm2UdwNbJxoE5sQFd2Hbu+WFxQIDAQAB", 7 | "manifest_version": 2, 8 | "name": "Ignore X-Frame headers", 9 | "permissions": [ "webRequest", "webRequestBlocking", "\u003Call_urls>" ], 10 | "update_url": "https://clients2.google.com/service/update2/crx", 11 | "version": "1.1" 12 | } 13 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mclkkofklkfljcocdinagocijmpgbhab/5.0.1.9_0/background.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Background page 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mclkkofklkfljcocdinagocijmpgbhab/5.0.1.9_0/chext_inject.js: -------------------------------------------------------------------------------- 1 | (function() { var a=window.location.href.match(/[&\?]code=([\w\/\-]+)/);if(a&&1?'}}}); })() 3 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mclkkofklkfljcocdinagocijmpgbhab/5.0.1.9_0/layouts/ckb_ar.js: -------------------------------------------------------------------------------- 1 | (function() { google.elements.keyboard.loadme({id:"ckb_ar",direction:"rtl",title:"\u06a9\u0648\u0631\u062f\u06cc (\u062f\u06d5\u0633\u062a\u0646\u0648\u0633\u06cc \u0639\u06d5\u0631\u06d5\u0628\u06cc)",mappings:{"":{"":"\u0698\u0661\u0662\u0663\u0664\u0665\u0666\u0667\u0668\u0669\u0660-=\u0686\u0635\u067e\u0642\u0641\u063a\u0639{{S||\ufeeb||\u0647}}\u062e\u062d\u062c\u062f\\\u0634\u0633\u06cc\u0628\u0644\u0627\u062a\u0646\u0645\u06a9\u06af\u0626\u0621\u06c6\u0631{{\u0644\u0627}}\u0649{{S||\u06d5||\u0647\u200c}}\u0648\u0632/"}, 2 | s:{"":"~!@#$%\u00bb\u00ab*)(_+\u0636}\u062b{\u06a4\u0625{{}}'\"\u061b><|][\u06ce{{}}\u06b5\u0623\u0640\u060c/:\u0637{{S||\u2904||\u200c}}{{\u0648\u0648}}\u0624\u0695{{\u06b5\u0627}}\u0622\u0629,.\u061f{{S||\u2904||\u200c}}"}}}); })() 3 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mclkkofklkfljcocdinagocijmpgbhab/5.0.1.9_0/layouts/ckb_en.js: -------------------------------------------------------------------------------- 1 | (function() { google.elements.keyboard.loadme({id:"ckb_en",title:"\u06a9\u0648\u0631\u062f\u06cc",direction:"rtl",mappings:{"":{"":"\u20ac\u0661\u0662\u0663\u0664\u0665\u0666\u0667\u0668\u0669\u0660-=\u0642\u0648\u06d5\u0631\u062a\u06cc\u0626\u062d\u06c6\u067e}{\\\u0627\u0633\u062f\u0641\u06af{{S||\ufeeb||\u0647}}\u0698\u06a9\u0644\u061b'\u0632\u062e\u062c\u06a4\u0628\u0646\u0645\u060c./"},s:{"":'~!@#$%\u00bb\u00ab*)(_+`{{\u0648\u0648}}\u064a\u0695\u0637\u06ce\u0621\u0639\u0624\u062b][|\u0622\u0634\u0630\u0625\u063a{{S||\u2904||\u200c}}\u0623\u0643\u06b5:"\u0636\u0635\u0686\u0638\u0649\u0629\u0640><\u061f{{S||\u2904||\u200c}}'}}}); })() 2 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mclkkofklkfljcocdinagocijmpgbhab/5.0.1.9_0/layouts/en.js: -------------------------------------------------------------------------------- 1 | (function() { google.elements.keyboard.loadme({id:"en",title:"English",mappings:{",c":{"":"`1234567890-=qwertyuiop[]\\asdfghjkl;'zxcvbnm,./"},"s,sc":{"":'~!@#$%^&*()_+QWERTYUIOP{}|ASDFGHJKL:"ZXCVBNM<>?'},"l,cl":{"":"`1234567890-=QWERTYUIOP[]\\ASDFGHJKL;'ZXCVBNM,./"},"sl,scl":{"":'~!@#$%^&*()_+qwertyuiop{}|asdfghjkl:"zxcvbnm<>?'}}}); })() 2 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mclkkofklkfljcocdinagocijmpgbhab/5.0.1.9_0/layouts/en_dvorak.js: -------------------------------------------------------------------------------- 1 | (function() { google.elements.keyboard.loadme({id:"en_dvorak",title:"English Dvorak",mappings:{",c":{"":"`1234567890[]',.pyfgcrl/=\\aoeuidhtns-;qjkxbmwvz"},"s,sc":{"":'~!@#$%^&*(){}"<>PYFGCRL?+|AOEUIDHTNS_:QJKXBMWVZ'},"l,cl":{"":"`1234567890[]',.PYFGCRL/=\\AOEUIDHTNS-;QJKXBMWVZ"},"sl,scl":{"":'~!@#$%^&*(){}"<>pyfgcrl?+|aoeuidhtns_:qjkxbmwvz'}}}); })() 2 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mclkkofklkfljcocdinagocijmpgbhab/5.0.1.9_0/layouts/fy_accents.js: -------------------------------------------------------------------------------- 1 | (function() { google.elements.keyboard.loadme({id:"fy_accents",title:"West Frisian",mappings:{",c":{"":"`1234567890-=qwertyuiop[]\\asdfghjkl;'zxcvbnm,./"},"s,sc":{"":'~!@#$%^&*()_+QWERTYUIOP{}|ASDFGHJKL:"ZXCVBNM<>?'},"l,cl":{"":"`1234567890-=QWERTYUIOP[]\\ASDFGHJKL;'ZXCVBNM,./"},"sl,scl":{"":'~!@#$%^&*()_+qwertyuiop{}|asdfghjkl:"zxcvbnm<>?'}},accents:{",c,sl,scl,s,sc,l,cl":["\u00c2,\u00c9,\u00ca,\u00d4,\u00da,\u00db,\u00e2,\u00e9,\u00ea,\u00f4,\u00fa,\u00fb"]},transform:{"'E":"\u00c9","'U":"\u00da","'e":"\u00e9", 2 | "'u":"\u00fa","\\^A":"\u00c2","\\^E":"\u00ca","\\^O":"\u00d4","\\^U":"\u00db","\\^a":"\u00e2","\\^e":"\u00ea","\\^o":"\u00f4","\\^u":"\u00fb"}}); })() 3 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mclkkofklkfljcocdinagocijmpgbhab/5.0.1.9_0/layouts/ga_accents.js: -------------------------------------------------------------------------------- 1 | (function() { google.elements.keyboard.loadme({id:"ga_accents",title:"Irish",mappings:{",c":{"":"`1234567890-=qwertyuiop[]\\asdfghjkl;'zxcvbnm,./"},"s,sc":{"":'~!@#$%^&*()_+QWERTYUIOP{}|ASDFGHJKL:"ZXCVBNM<>?'},"l,cl":{"":"`1234567890-=QWERTYUIOP[]\\ASDFGHJKL;'ZXCVBNM,./"},"sl,scl":{"":'~!@#$%^&*()_+qwertyuiop{}|asdfghjkl:"zxcvbnm<>?'}},accents:{",c,sl,scl,s,sc,l,cl":["\u00e1,\u00e9,\u00ed,\u00f3,\u00fa,\u00c1,\u00c9,\u00cd,\u00d3,\u00da"]},transform:{"'a":"\u00e1","'e":"\u00e9","'i":"\u00ed","'o":"\u00f3","'u":"\u00fa", 2 | "'A":"\u00c1","'E":"\u00c9","'I":"\u00cd","'O":"\u00d3","'U":"\u00da"}}); })() 3 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mclkkofklkfljcocdinagocijmpgbhab/5.0.1.9_0/layouts/gd_accents.js: -------------------------------------------------------------------------------- 1 | (function() { google.elements.keyboard.loadme({id:"gd_accents",title:"Scots Gaelic",mappings:{",c":{"":"`1234567890-=qwertyuiop[]\\asdfghjkl;'zxcvbnm,./"},"s,sc":{"":'~!@#$%^&*()_+QWERTYUIOP{}|ASDFGHJKL:"ZXCVBNM<>?'},"l,cl":{"":"`1234567890-=QWERTYUIOP[]\\ASDFGHJKL;'ZXCVBNM,./"},"sl,scl":{"":'~!@#$%^&*()_+qwertyuiop{}|asdfghjkl:"zxcvbnm<>?'}},accents:{",c,sl,scl,s,sc,l,cl":["\u00e1,\u00e9,\u00f3,\u00fa,\u00e0,\u00f2,\u00ec,\u00e8,\u00f9","\u00c1,\u00c9,\u00d3,\u00da,\u00c0,\u00d2,\u00cc,\u00c8,\u00d9"]},transform:{"'a":"\u00e1", 2 | "'e":"\u00e9","'o":"\u00f3","'u":"\u00fa","'A":"\u00c1","'E":"\u00c9","'O":"\u00d3","'U":"\u00da","`a":"\u00e0","`e":"\u00e8","`i":"\u00ec","`o":"\u00f2","`u":"\u00f9","`A":"\u00c0","`E":"\u00c8","`I":"\u00cc","`O":"\u00d2","`U":"\u00d9"}}); })() 3 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mclkkofklkfljcocdinagocijmpgbhab/5.0.1.9_0/layouts/haw.js: -------------------------------------------------------------------------------- 1 | (function() { google.elements.keyboard.loadme({id:"haw",title:"\u02bb\u014clelo Hawai\u02bbi",mappings:{",c":{"":"{{\u02bb}}1234567890-=qwertyuiop[]\\asdfghjkl\u0304'zxcvbnm,./"},"s,sc":{"":'~!@#$%^&*()_+QWERTYUIOP{}|ASDFGHJKL:"ZXCVBNM<>?'},"l,cl":{"":"`1234567890-=QWERTYUIOP[]\\ASDFGHJKL;'ZXCVBNM,./"},"sl,scl":{"":'~!@#$%^&*()_+qwertyuiop{}|asdfghjkl:"zxcvbnm<>?'}}}); })() 2 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mclkkofklkfljcocdinagocijmpgbhab/5.0.1.9_0/layouts/haw_accents.js: -------------------------------------------------------------------------------- 1 | (function() { google.elements.keyboard.loadme({id:"haw_accents",title:"Hawaiian",mappings:{",c":{"":"`1234567890-=qwertyuiop[]\\asdfghjkl;'zxcvbnm,./"},"s,sc":{"":'~!@#$%^&*()_+QWERTYUIOP{}|ASDFGHJKL:"ZXCVBNM<>?'},"l,cl":{"":"`1234567890-=QWERTYUIOP[]\\ASDFGHJKL;'ZXCVBNM,./"},"sl,scl":{"":'~!@#$%^&*()_+qwertyuiop{}|asdfghjkl:"zxcvbnm<>?'}},accents:{",c,sl,scl,s,sc,l,cl":["\u0100,\u0112,\u012a,\u014c,\u016a,\u0101,\u0113,\u012b,\u014d,\u016b,\u02bb"]},transform:{"-A":"\u0100","-E":"\u0112","-I":"\u012a","-O":"\u014c", 2 | "-U":"\u016a","-a":"\u0101","-e":"\u0113","-i":"\u012b","-o":"\u014d","-u":"\u016b","-'":"\u02bb"}}); })() 3 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mclkkofklkfljcocdinagocijmpgbhab/5.0.1.9_0/layouts/he.js: -------------------------------------------------------------------------------- 1 | (function() { google.elements.keyboard.loadme({id:"he",title:"\u05e2\u05b4\u05d1\u05b0\u05e8\u05b4\u05d9\u05ea",direction:"rtl",mappings:{"":{"":";1234567890-=/'\u05e7\u05e8\u05d0\u05d8\u05d5\u05df\u05dd\u05e4][\\\u05e9\u05d3\u05d2\u05db\u05e2\u05d9\u05d7\u05dc\u05da\u05e3,\u05d6\u05e1\u05d1\u05d4\u05e0\u05de\u05e6\u05ea\u05e5."},s:{"":'~!@#$%^&*)(_+QWERTYUIOP}{|ASDFGHJKL:"ZXCVBNM<>?'},l:{"":";1234567890-=QWERTYUIOP][\\ASDFGHJKL;'ZXCVBNM,./"},sl:{"":"\u05b0\u05b1\u05b2\u05b3\u05b4\u05b5\u05b6\u05b7\u05b8\u05c2\u05c1\u05b9\u05bc/'\u05e7\u05e8\u05d0\u05d8\u05d5\u05df\u05dd\u05e4][\u05bb\u05e9\u05d3\u05d2\u05db\u05e2\u05d9\u05d7\u05dc\u05da\u05e3,\u05d6\u05e1\u05d1\u05d4\u05e0\u05de\u05e6\u05ea\u05e5."}, 2 | "c,sc,cl,scl":{"4m":"\u20aa\u05bf",EU:"\u20ac\u05f0",HJ:"\u05f2\u05f1"}}}); })() 3 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mclkkofklkfljcocdinagocijmpgbhab/5.0.1.9_0/layouts/iw.js: -------------------------------------------------------------------------------- 1 | (function() { google.elements.keyboard.loadme({id:"iw",title:"\u05e2\u05b4\u05d1\u05b0\u05e8\u05b4\u05d9\u05ea",direction:"rtl",mappings:{"":{"":";1234567890-=/'\u05e7\u05e8\u05d0\u05d8\u05d5\u05df\u05dd\u05e4][\\\u05e9\u05d3\u05d2\u05db\u05e2\u05d9\u05d7\u05dc\u05da\u05e3,\u05d6\u05e1\u05d1\u05d4\u05e0\u05de\u05e6\u05ea\u05e5."},s:{"":'~!@#$%^&*)(_+QWERTYUIOP}{|ASDFGHJKL:"ZXCVBNM>?'},"c,sc,cl,scl":{"":"\u201e'\u201e\u201c\u2116\u20ac6\u00a7\u00b090\u2014\u2013\u10e5\u10ec\u10f1\u00ae\u10e2\u10f8\u10e3\u10f2\u10dd\u10de[]~\u10fa\u10e1\u10d3\u10f6\u10f9\u10f5\u10f7\u10d9\u10da;'\u10d6\u10f4\u00a9\u10f3\u10d1\u10fc\u10db\u00ab\u00bb\u10fb"}}}); })() 2 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mclkkofklkfljcocdinagocijmpgbhab/5.0.1.9_0/layouts/ko.js: -------------------------------------------------------------------------------- 1 | (function() { google.elements.keyboard.loadme({id:"ko",title:"\ud55c\uad6d\uc5b4",mappings:{",c":{"":"`1234567890-=\u3142\u3148\u3137\u3131\u3145\u315b\u3155\u3151\u3150\u3154[]\\\u3141\u3134\u3147\u3139\u314e\u3157\u3153\u314f\u3163;'\u314b\u314c\u314a\u314d\u3160\u315c\u3161,./"},"s,sc":{"":'~!@#$%^&*()_+\u3143\u3149\u3138\u3132\u3146\u315b\u3155\u3151\u3152\u3156{}|\u3141\u3134\u3147\u3139\u314e\u3157\u3153\u314f\u3163:"\u314b\u314c\u314a\u314d\u3160\u315c\u3161<>?'},"l,cl":{"":"`1234567890-=QWERTYUIOP[]\\ASDFGHJKL;'ZXCVBNM,./"}, 2 | "sl,scl":{"":'~!@#$%^&*()_+qwertyuiop{}|asdfghjkl:"zxcvbnm<>?'}},transform:{"([\u1100-\u11ff\u3131-\u318e\uac00-\ud7af]\u001d)?[\u3131-\u318e]":google.elements.keyboard.hangulTransform}}); })() 3 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mclkkofklkfljcocdinagocijmpgbhab/5.0.1.9_0/layouts/ku.js: -------------------------------------------------------------------------------- 1 | (function() { google.elements.keyboard.loadme({id:"ku",title:"Kurd\u00ee Bedirxan",mappings:{",c":{"":"`1234567890-=qwertyuiop{{\u00ea}}{{\u00ee}}{{\u00fb}}asdfghjkl{{\u00e7}}{{\u015f}}zxcvbnm,./"},"s,sc":{"":"~!@#$%^&*()_+QWERTYUIOP{{\u00ca}}{{\u00ce}}{{\u00db}}ASDFGHJKL{{\u00c7}}{{\u015e}}ZXCVBNM<>?"},"l,cl":{"":"`1234567890-=qwertyuiop[]\\asdfghjkl;'zxcvbnm,./"},"sl,scl":{"":'~!@#$%^&*()_+QWERTYUIOP{}|ASDFGHJKL:"ZXCVBNM<>?'}}}); })() 2 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mclkkofklkfljcocdinagocijmpgbhab/5.0.1.9_0/layouts/lb_accents.js: -------------------------------------------------------------------------------- 1 | (function() { google.elements.keyboard.loadme({id:"lb_accents",title:"Luxembourgish",mappings:{",c":{"":"`1234567890-=qwertyuiop[]\\asdfghjkl;'zxcvbnm,./"},"s,sc":{"":'~!@#$%^&*()_+QWERTYUIOP{}|ASDFGHJKL:"ZXCVBNM<>?'},"l,cl":{"":"`1234567890-=QWERTYUIOP[]\\ASDFGHJKL;'ZXCVBNM,./"},"sl,scl":{"":'~!@#$%^&*()_+qwertyuiop{}|asdfghjkl:"zxcvbnm<>?'}},accents:{",c,sl,scl,s,sc,l,cl":["\u00c9,\u00e9,\u00c4,\u00e4,\u00cb,\u00eb"]},transform:{"'E":"\u00c9","'e":"\u00e9",'"A':"\u00c4",'"a':"\u00e4",'"E':"\u00cb",'"e':"\u00eb"}}); })() 2 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mclkkofklkfljcocdinagocijmpgbhab/5.0.1.9_0/layouts/lis.js: -------------------------------------------------------------------------------- 1 | (function() { var a='~!@#$%^&*()_+QWERTYUIOP{}|ASDFGHJKL:"ZXCVBNM<>?',b="`1234567890-=qwertyuiop[]\\asdfghjkl;'zxcvbnm,./";google.elements.keyboard.loadme({id:"lis",title:"\ua4e1\ua4f2\ua4e2\ua4f4",mappings:{"":{"":"`1234567890-=\ua4ff\ua4ea\ua4f0\ua4e3\ua4d4\ua4ec\ua4f4\ua4f2\ua4f3\ua4d1[]\\\ua4ee\ua4e2\ua4d3\ua4dd\ua4d6\ua4e7\ua4d9\ua4d7\ua4e1\ua4fc\u02bc\ua4dc\ua4eb\ua4da\ua4e6\ua4d0\ua4e0\ua4df\ua4f9\ua4f8/"},s:{"":'~!@#$%^&*()_+\ua4ff{{\ua4f9\ua4fc}}\ua4f1\ua4e4\ua4d5\ua4fb\ua4f5\ua4fe\u02cd\ua4d2{}|\ua4ef{{\ua4f8\ua4fc}}\ua4f7\ua4de\ua4e8\ua4fa\ua4e9\ua4d8\ua4f6\ua4fd"\ua4dc\ua4eb\ua4db\ua4e5\ua4ed\ua4e0-<>?'}, 2 | c:{"":b},sc:{"":a},"l,cl":{"":b},"sl,scl":{"":a}}}); })() 3 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mclkkofklkfljcocdinagocijmpgbhab/5.0.1.9_0/layouts/lo.js: -------------------------------------------------------------------------------- 1 | (function() { google.elements.keyboard.loadme({id:"lo",title:"\u0e9e\u0eb2\u0eaa\u0eb2\u0ea5\u0eb2\u0ea7",mappings:{",l":{"":"*\u0ea2\u0e9f\u0ec2\u0e96\u0eb8\u0eb9\u0e84\u0e95\u0e88\u0e82\u0e8a\u0ecd\u0ebb\u0ec4\u0eb3\u0e9e\u0eb0\u0eb4\u0eb5\u0eae\u0e99\u0e8d\u0e9a\u0ea5\u201c\u0eb1\u0eab\u0e81\u0e94\u0ec0\u0ec9\u0ec8\u0eb2\u0eaa\u0ea7\u0e87\u0e9c\u0e9b\u0ec1\u0ead\u0eb6\u0eb7\u0e97\u0ea1\u0ec3\u0e9d"},"s,sl":{"":"/1234\u0ecc\u0ebc56789{{\u0ecd\u0ec8}}{{\u0ebb\u0ec9}}0{{\u0eb3\u0ec9}}_+{{\u0eb4\u0ec9}}{{\u0eb5\u0ec9}}\u0ea3\u0edc\u0ebd-{{\u0eab\u0ebc}}\u201d{{\u0eb1\u0ec9}};.,:\u0eca\u0ecb!?%=\u20ad(\u0eafx{{\u0eb6\u0ec9}}{{\u0eb7\u0ec9}}\u0ec6\u0edd$)"}, 2 | "c,cl":{1234567890:"\u0ed1\u0ed2\u0ed3\u0ed4\u0ed5\u0ed6\u0ed7\u0ed8\u0ed9\u0ed0"}}}); })() 3 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mclkkofklkfljcocdinagocijmpgbhab/5.0.1.9_0/layouts/mi.js: -------------------------------------------------------------------------------- 1 | (function() { google.elements.keyboard.loadme({id:"mi",title:"M\u0101ori",mappings:{",c":{"":"`1234567890-=qwertyuiop[]\\asdfghjkl;'zxcvbnm,./"},"s,sc":{"":'~!@#$%^&*()_+QWERTYUIOP{}|ASDFGHJKL:"ZXCVBNM<>?'},"l,cl":{"":"`1234567890-=QWERTYUIOP[]\\ASDFGHJKL;'ZXCVBNM,./"},"sl,scl":{"":'~!@#$%^&*()_+qwertyuiop{}|asdfghjkl:"zxcvbnm<>?'}},transform:{"`A":"\u0100","`a":"\u0101","`E":"\u0112","`e":"\u0113","`I":"\u012a","`i":"\u012b","`O":"\u014c","`o":"\u014d","`U":"\u016a","`u":"\u016b","``":"`"}}); })() 2 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mclkkofklkfljcocdinagocijmpgbhab/5.0.1.9_0/layouts/ne_phone.js: -------------------------------------------------------------------------------- 1 | (function() { google.elements.keyboard.loadme({id:"ne_phone",title:"\u0928\u0947\u092a\u093e\u0932\u0940 (\u0930\u094b\u092e\u093e\u0928\u093e\u0907\u091c\u094d\u0921)",mappings:{",l":{"":"\u093c\u0967\u0968\u0969\u096a\u096b\u096c\u096d\u096e\u096f\u0966-{{S||\u21d4||\u200d}}\u091f\u094c\u0947\u0930\u0924\u092f\u0941\u093f\u094b\u092a\u0907\u090f\u0950\u093e\u0938\u0926\u0909\u0917\u0939\u091c\u0915\u0932;'\u0937\u0921\u091a\u0935\u092c\u0928\u092e,\u0964\u094d"},"s,sl":{"":'\u093d!@#{{\u0930\u0941.}}%^&*()_{{S||\u2904||\u200c}}\u0920\u0914\u0948\u0943\u0925\u091e\u0942\u0940\u0913\u092b\u0908\u0910\u0903\u0906\u0936\u0927\u090a\u0918\u0905\u091d\u0916\u0965:"\u090b\u0922\u091b\u0901\u092d\u0923\u0902\u0919.?'}}}); })() 2 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mclkkofklkfljcocdinagocijmpgbhab/5.0.1.9_0/layouts/nv_std.js: -------------------------------------------------------------------------------- 1 | (function() { google.elements.keyboard.loadme({id:"nv_std",title:"Din\u00e9 bizaad - Traditional",mappings:{"":{"":"`\u00e1\u0105{{\u0105\u0301}}\u00e9\u0119{{\u0119\u0301}}\u00ed\u012f{{\u012f\u0301}}\u00f3{{\u01eb}}{{\u01eb\u0301}}qwertyuiop\u0142\u0144\\asdfghjkl;\u02bczxcvbnm,./"},s:{"":'~\u00c1\u0104{{\u0104\u0301}}\u00c9\u0118{{\u0118\u0301}}\u00cd\u012e{{\u012e\u0301}}\u00d3\u01ea{{\u01ea\u0301}}QWERTYUIOP\u0141\u0143|ASDFGHJKL:"ZXCVBNM<>?'},"c,l,cl":{"":"`1234567890-=qwertyuiop[]\\asdfghjkl;'zxcvbnm,./"}, 2 | "sc,sl,scl":{"":'~!@#$%^&*()_+QWERTYUIOP{}|ASDFGHJKL:"ZXCVBNM<>?'}}}); })() 3 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mclkkofklkfljcocdinagocijmpgbhab/5.0.1.9_0/layouts/sm_accents.js: -------------------------------------------------------------------------------- 1 | (function() { google.elements.keyboard.loadme({id:"sm_accents",title:"Samoan",mappings:{",c":{"":"`1234567890-=qwertyuiop[]\\asdfghjkl;'zxcvbnm,./"},"s,sc":{"":'~!@#$%^&*()_+QWERTYUIOP{}|ASDFGHJKL:"ZXCVBNM<>?'},"l,cl":{"":"`1234567890-=QWERTYUIOP[]\\ASDFGHJKL;'ZXCVBNM,./"},"sl,scl":{"":'~!@#$%^&*()_+qwertyuiop{}|asdfghjkl:"zxcvbnm<>?'}},accents:{",c,sl,scl,s,sc,l,cl":["\u0100,\u0112,\u012a,\u014c,\u016a,\u0101,\u0113,\u012b,\u014d,\u016b,\u02bb"]},transform:{"-A":"\u0100","-E":"\u0112","-I":"\u012a","-O":"\u014c", 2 | "-U":"\u016a","-a":"\u0101","-e":"\u0113","-i":"\u012b","-o":"\u014d","-u":"\u016b","-'":"\u02bb"}}); })() 3 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mclkkofklkfljcocdinagocijmpgbhab/5.0.1.9_0/layouts/th_pattajoti.js: -------------------------------------------------------------------------------- 1 | (function() { google.elements.keyboard.loadme({id:"th_pattajoti",title:"\u0e20\u0e32\u0e29\u0e32\u0e44\u0e17\u0e22 (Pattajoti)",mappings:{",c,sl,scl":{"":"_=\u0e52\u0e53\u0e54\u0e55\u0e39\u0e57\u0e58\u0e59\u0e50\u0e51\u0e56\u0e47\u0e15\u0e22\u0e2d\u0e23\u0e48\u0e14\u0e21\u0e27\u0e41\u0e43\u0e0c\u0e3a\u0e49\u0e17\u0e07\u0e01\u0e31\u0e35\u0e32\u0e19\u0e40\u0e44\u0e02\u0e1a\u0e1b\u0e25\u0e2b\u0e34\u0e04\u0e2a\u0e30\u0e08\u0e1e"},"s,l,sc,cl":{"":'\u0e3f+"/,?\u0e38\u0e45.()-%\u0e4a\u0e24\u0e46\u0e0d\u0e29\u0e36\u0e1d\u0e0b\u0e16\u0e12\u0e2f\u0e26\u0e4d\u0e4b\u0e18\u0e33\u0e13\u0e4c\u0e37\u0e1c\u0e0a\u0e42\u0e06\u0e11\u0e0e\u0e0f\u0e10\u0e20{{\u0e31\u0e49}}\u0e28\u0e2e\u0e1f\u0e09\u0e2c'}}}); })() 2 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mclkkofklkfljcocdinagocijmpgbhab/5.0.1.9_0/layouts/th_tis.js: -------------------------------------------------------------------------------- 1 | (function() { google.elements.keyboard.loadme({id:"th_tis",title:"\u0e20\u0e32\u0e29\u0e32\u0e44\u0e17\u0e22 (TIS-820.2538)",mappings:{",c,sl,scl":{"":"_\u0e45/-\u0e20\u0e16\u0e38\u0e36\u0e04\u0e15\u0e08\u0e02\u0e0a\u0e46\u0e44\u0e33\u0e1e\u0e30\u0e31\u0e35\u0e23\u0e19\u0e22\u0e1a\u0e25\u0e03\u0e1f\u0e2b\u0e01\u0e14\u0e40\u0e49\u0e48\u0e32\u0e2a\u0e27\u0e07\u0e1c\u0e1b\u0e41\u0e2d\u0e34\u0e37\u0e17\u0e21\u0e43\u0e1d"},"s,l,sc,cl":{"":'%+\u0e51\u0e52\u0e53\u0e54\u0e39\u0e3f\u0e55\u0e56\u0e57\u0e58\u0e59\u0e50"\u0e0e\u0e11\u0e18\u0e4d\u0e4a\u0e13\u0e2f\u0e0d\u0e10,\u0e05\u0e24\u0e06\u0e0f\u0e42\u0e0c\u0e47\u0e4b\u0e29\u0e28\u0e0b.()\u0e09\u0e2e\u0e3a\u0e4c?\u0e12\u0e2c\u0e26'}}}); })() 2 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mclkkofklkfljcocdinagocijmpgbhab/5.0.1.9_0/layouts/ug.js: -------------------------------------------------------------------------------- 1 | (function() { google.elements.keyboard.loadme({id:"ug",title:"\u0626\u06c7\u064a\u063a\u06c7\u0631\u0686\u06d5",direction:"rtl",mappings:{",c,sl,scl":{"":"`1234567890-=\u0686\u06cb\u06d0\u0631\u062a\u064a\u06c7\u06ad\u0648\u067e][\\\u06be\u0633\u062f\u0627\u06d5\u0649\u0642\u0643\u0644\u061b'\u0632\u0634\u063a\u06c8\u0628\u0646\u0645\u060c.\u0626"},"s,l,sc,cl":{"":'~!@#$%^&*)(_+\u0686\u06cb\u06d0\u0631\u062a\u064a\u06c7\u06ad\u0648\u067e\u00bb\u00ab|\u06be\u0633\u0698\u0641\u06af\u062e\u062c\u06c6\ufefb:"\u0632\u0634\u063a\u06c8\u0628\u0646\u0645><\u061f'}}}); })() 2 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mclkkofklkfljcocdinagocijmpgbhab/5.0.1.9_0/layouts/uz_latn.js: -------------------------------------------------------------------------------- 1 | (function() { google.elements.keyboard.loadme({id:"uz_latn",title:"O\u2018zbek",mappings:{"":{"":"`1234567890-=qwertyuiop[]\\asdfghjkl;'zxcvbnm,./"},s:{"":'~!@#$%^&*()_+QWERTYUIOP{}|ASDFGHJKL:"ZXCVBNM<>?'},l:{"":"`1234567890-=QWERTYUIOP[]\\ASDFGHJKL;'ZXCVBNM,./"},sl:{"":'~!@#$%^&*()_+qwertyuiop{}|asdfghjkl:"zxcvbnm<>?'},"c,sc,cl,scl":{2:"@",3:"#",4:"\u00a4",6:"^",7:"&",8:"$","\u00db":"[","\u00dd":"]","\u00de":"|","\u00bc":"<","\u00be":">","\u00bf":"/"}}}); })() 2 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mclkkofklkfljcocdinagocijmpgbhab/5.0.1.9_0/layouts/vi_viqr.js: -------------------------------------------------------------------------------- 1 | (function() { google.elements.keyboard.loadme({id:"vi_viqr",title:"Ti\u1ebfng Vi\u1ec7t VIQR",mappings:{",c":{"":"`1234567890-=qwertyuiop[]\\asdfghjkl;'zxcvbnm,./"},"s,sc":{"":'~!@#$%^&*()_+QWERTYUIOP{}|ASDFGHJKL:"ZXCVBNM<>?'},"l,cl":{"":"`1234567890-=QWERTYUIOP[]\\ASDFGHJKL;'ZXCVBNM,./"},"sl,scl":{"":'~!@#$%^&*()_+qwertyuiop{}|asdfghjkl:"zxcvbnm<>?'}},transform:{dd:"\u0111","D[dD]":"\u0110","a\\(":"\u0103","a\\^":"\u00e2","e\\^":"\u00ea","o\\^":"\u00f4","o\\+":"\u01a1","u\\+":"\u01b0","A\\(":"\u0102","A\\^":"\u00c2", 2 | "E\\^":"\u00ca","O\\^":"\u00d4","O\\+":"\u01a0","U\\+":"\u01af","\\\\\\(":"(","\\\\\\^":"^","\\\\\\+":"+","\\\\\\`":"`","\\\\\\'":"'","\\\\\\?":"?","\\\\\\~":"~","\\\\\\.":".","\\`":"\u0300","\\'":"\u0301","\\?":"\u0309","\\~":"\u0303","\\.":"\u0323"}}); })() 3 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mclkkofklkfljcocdinagocijmpgbhab/5.0.1.9_0/module.nmf: -------------------------------------------------------------------------------- 1 | { 2 | "program": { 3 | "portable": { 4 | "pnacl-translate": { 5 | "url": "https://www.gstatic.com/inputtools/nacl/3.8.0.1/decoder.pexe" 6 | } 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mclkkofklkfljcocdinagocijmpgbhab/5.0.1.9_0/popup.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/LICENSE: -------------------------------------------------------------------------------- 1 | Extension files copyright (c) 2011, 2012 Fullscreen Clock LLC execpt where 2 | otherwise noted. All rights reserved. 3 | 4 | spin.gif copyright (c) 2012 http://preloaders.net 5 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/_locales/ar/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "action_title": { 3 | "message": "\u0627\u0646\u0642\u0631 \u0644\u0628\u062F\u0621 \u0645\u0644\u0621 \u0633\u0627\u0639\u0629" 4 | }, 5 | "description": { 6 | "message": "\u064A\u0648\u0641\u0631 \u0634\u0631\u064A\u0637 \u0627\u0644\u0623\u062F\u0648\u0627\u062A \u0627\u0644\u0645\u0641\u064A\u062F\u0629 \u0639\u0644\u0649 \u0645\u062F\u0627\u0631 \u0627\u0644\u0633\u0627\u0639\u0629 \u0648\u0639\u0644\u0649 \u0645\u062F\u0627\u0631 \u0627\u0644\u0633\u0627\u0639\u0629 \u0645\u0644\u0621 \u0627\u062E\u062A\u064A\u0627\u0631\u064A\u0629." 7 | }, 8 | "name": { 9 | "message": "\u0639\u0642\u0627\u0631\u0628 \u0627\u0644\u0633\u0627\u0639\u0629" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/_locales/ca/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "action_title": { 3 | "message": "Feu clic per iniciar el rellotge en pantalla completa" 4 | }, 5 | "description": { 6 | "message": "Ofereix un rellotge de la barra d'eines \u00FAtils i un rellotge en pantalla completa opcional." 7 | }, 8 | "name": { 9 | "message": "Rellotge" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/_locales/cs/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "action_title": { 3 | "message": "Klepn\u011Bte na tla\u010D\u00EDtko pro spu\u0161t\u011Bn\u00ED fullscreen hodin" 4 | }, 5 | "description": { 6 | "message": "Poskytuje u\u017Eite\u010Dn\u00FD panel n\u00E1stroj\u016F hodiny a hodiny voliteln\u00FD fullscreen." 7 | }, 8 | "name": { 9 | "message": "Hodiny" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/_locales/da/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "action_title": { 3 | "message": "Klik for at starte fullscreen ur" 4 | }, 5 | "description": { 6 | "message": "Giver et nyttigt v\u00E6rkt\u00F8jslinje ur og valgfri fuldsk\u00E6rm ur." 7 | }, 8 | "name": { 9 | "message": "Ur" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/_locales/de/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "action_title": { 3 | "message": "Klicken Sie auf Vollbild Uhr zu starten" 4 | }, 5 | "description": { 6 | "message": "Bietet eine n\u00FCtzliche Symbolleiste Uhr und optional Vollbild Uhr." 7 | }, 8 | "name": { 9 | "message": "Uhr" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/_locales/en-GB/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "action_title": { 3 | "message": "Click to start fullscreen clock" 4 | }, 5 | "description": { 6 | "message": "This extension gives you a handy toolbar clock with easy access to a bigger fullscreen clock whenever you might need it." 7 | }, 8 | "name": { 9 | "message": "Clock" 10 | } 11 | } -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/_locales/en-US/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "action_title": { 3 | "message": "Click to start fullscreen clock" 4 | }, 5 | "description": { 6 | "message": "This extension gives you a handy toolbar clock with easy access to a bigger fullscreen clock whenever you might need it." 7 | }, 8 | "name": { 9 | "message": "Clock" 10 | } 11 | } -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/_locales/en/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "action_title": { 3 | "message": "Click to start fullscreen clock" 4 | }, 5 | "description": { 6 | "message": "This extension gives you a handy toolbar clock with easy access to a bigger fullscreen clock whenever you might need it." 7 | }, 8 | "name": { 9 | "message": "Clock" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/_locales/es/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "action_title": { 3 | "message": "Haga clic para iniciar el reloj en pantalla completa" 4 | }, 5 | "description": { 6 | "message": "Ofrece un reloj de la barra de herramientas \u00FAtiles y un reloj en pantalla completa opcional." 7 | }, 8 | "name": { 9 | "message": "Reloj" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/_locales/es_419/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": { 3 | "message": "Este reloj digital en pantalla completa le permite cambiar el color del reloj, realizar cuentas atr\u00E1s, y mucho m\u00E1s!" 4 | }, 5 | "name": { 6 | "message": "Reloj digital" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/_locales/et/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "action_title": { 3 | "message": "Kl\u00F5psake alustamiseks fullscreen kella" 4 | }, 5 | "description": { 6 | "message": "Annab kasulikku t\u00F6\u00F6riistariba kella ja vabatahtlik fullscreen kella." 7 | }, 8 | "name": { 9 | "message": "Kell" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/_locales/fi/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "action_title": { 3 | "message": "Napsauta K\u00E4ynnist\u00E4 fullscreen kello" 4 | }, 5 | "description": { 6 | "message": "Tarjoaa hy\u00F6dyllinen ty\u00F6kalurivi kellon ja vapaaehtoinen fullscreen kellon." 7 | }, 8 | "name": { 9 | "message": "Kello" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/_locales/fil/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "action_title": { 3 | "message": "I-click upang simulan ang fullscreen orasan" 4 | }, 5 | "description": { 6 | "message": "Magdudulot ng isang kapaki-pakinabang toolbar ng orasan at opsyonal na fullscreen orasan." 7 | }, 8 | "name": { 9 | "message": "Orasan" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/_locales/fr/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "action_title": { 3 | "message": "Cliquez ici pour d\u00E9marrer l'horloge en plein \u00E9cran" 4 | }, 5 | "description": { 6 | "message": "Fournit une horloge barre d'outils utiles et en option l'horloge en plein \u00E9cran." 7 | }, 8 | "name": { 9 | "message": "Horloge" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/_locales/he/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "action_title": { 3 | "message": "\u05DC\u05D7\u05E5 \u05DB\u05D3\u05D9 \u05DC\u05D4\u05E4\u05E2\u05D9\u05DC \u05D0\u05EA \u05D4\u05E9\u05E2\u05D5\u05DF \u05DE\u05E1\u05DA \u05DE\u05DC\u05D0" 4 | }, 5 | "description": { 6 | "message": "\u05DE\u05E1\u05E4\u05E7 \u05DB\u05DC\u05D9\u05DD \u05E9\u05D9\u05DE\u05D5\u05E9\u05D9\u05D9\u05DD \u05E9\u05E2\u05D5\u05DF \u05D5\u05E9\u05E2\u05D5\u05DF \u05DE\u05E1\u05DA \u05DE\u05DC\u05D0 \u05D0\u05D5\u05E4\u05E6\u05D9\u05D5\u05E0\u05DC\u05D9." 7 | }, 8 | "name": { 9 | "message": "\u05E9\u05E2\u05D5\u05DF" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/_locales/hi/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "action_title": { 3 | "message": "\u092A\u0942\u0930\u094D\u0923 \u0938\u094D\u0915\u094D\u0930\u0940\u0928 \u0918\u0921\u093C\u0940 \u0936\u0941\u0930\u0942 \u0915\u0930\u0928\u0947 \u0915\u0947 \u0932\u093F\u090F \u0915\u094D\u0932\u093F\u0915 \u0915\u0930\u0947\u0902" 4 | }, 5 | "description": { 6 | "message": "\u090F\u0915 \u0909\u092A\u092F\u094B\u0917\u0940 \u0909\u092A\u0915\u0930\u0923 \u092A\u091F\u094D\u091F\u0940 \u0918\u0921\u093C\u0940 \u0914\u0930 \u0935\u0948\u0915\u0932\u094D\u092A\u093F\u0915 fullscreen \u0918\u0921\u093C\u0940 \u092A\u094D\u0930\u0926\u093E\u0928 \u0915\u0930\u0924\u093E \u0939\u0948." 7 | }, 8 | "name": { 9 | "message": "\u0918\u0921\u093C\u0940" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/_locales/hr/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "action_title": { 3 | "message": "Kliknite za po\u010Detak fullscreen sat" 4 | }, 5 | "description": { 6 | "message": "Pru\u017Ea korisne alatnoj traci sat i opcija preko cijelog sata." 7 | }, 8 | "name": { 9 | "message": "Sat" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/_locales/hu/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "action_title": { 3 | "message": "Klikkelj hogy fullscreen \u00F3ra" 4 | }, 5 | "description": { 6 | "message": "Ny\u00FAjt hasznos eszk\u00F6zt\u00E1rat \u00F3ra \u00E9s v\u00E1laszthat\u00F3 teljes k\u00E9perny\u0151s \u00F3r\u00E1t." 7 | }, 8 | "name": { 9 | "message": "\u00D3ra" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/_locales/id/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "action_title": { 3 | "message": "Klik untuk memulai jam fullscreen" 4 | }, 5 | "description": { 6 | "message": "Menyediakan jam toolbar yang berguna dan jam fullscreen opsional." 7 | }, 8 | "name": { 9 | "message": "Jam" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/_locales/it/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "action_title": { 3 | "message": "Fare clic per avviare l'orologio a tutto schermo" 4 | }, 5 | "description": { 6 | "message": "Fornisce un orologio utile barra degli strumenti e opzionale orologio a schermo intero." 7 | }, 8 | "name": { 9 | "message": "Orologio" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/_locales/ja/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "action_title": { 3 | "message": "\u30D5\u30EB\u30B9\u30AF\u30EA\u30FC\u30F3\u30AF\u30ED\u30C3\u30AF\u3092\u958B\u59CB\u3059\u308B\u306B\u306F\u30AF\u30EA\u30C3\u30AF" 4 | }, 5 | "description": { 6 | "message": "\u6709\u7528\u306A\u30C4\u30FC\u30EB\u30D0\u30FC\u306E\u30AF\u30ED\u30C3\u30AF\u3068\u3001\u30AA\u30D7\u30B7\u30E7\u30F3\u306E\u30D5\u30EB\u30B9\u30AF\u30EA\u30FC\u30F3\u30AF\u30ED\u30C3\u30AF\u3092\u63D0\u4F9B\u3057\u307E\u3059\u3002" 7 | }, 8 | "name": { 9 | "message": "\u30AF\u30ED\u30C3\u30AF" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/_locales/ko/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "action_title": { 3 | "message": "\uC804\uCCB4 \uD654\uBA74 \uC2DC\uACC4\uB97C \uC2DC\uC791\uD558\uB824\uBA74 \uD074\uB9AD\uD558\uC2ED\uC2DC\uC624" 4 | }, 5 | "description": { 6 | "message": "\uC720\uC6A9\uD55C \uB3C4\uAD6C \uBAA8\uC74C \uD074\uB7ED \uBC0F \uC635\uC158 \uC804\uCCB4 \uD654\uBA74 \uD074\uB7ED\uC744 \uC81C\uACF5\uD569\uB2C8\uB2E4." 7 | }, 8 | "name": { 9 | "message": "\uC2DC\uACC4" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/_locales/lt/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "action_title": { 3 | "message": "Spustel\u0117kite, jei norite prad\u0117ti pilno ekrano laikrodis" 4 | }, 5 | "description": { 6 | "message": "Suteikia nauding\u0173 \u012Franki\u0173 juostoje laikrodis ir laikrodis pasirinktinai fullscreen." 7 | }, 8 | "name": { 9 | "message": "Laikrodis" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/_locales/lv/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "action_title": { 3 | "message": "Noklik\u0161\u0137iniet, lai s\u0101ktu pilnekr\u0101na pulksteni" 4 | }, 5 | "description": { 6 | "message": "Sniedz noder\u012Bgu r\u012Bkjoslas pulkstenis un izv\u0113les pilnekr\u0101na pulksteni." 7 | }, 8 | "name": { 9 | "message": "Pulkstenis" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/_locales/nl/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "action_title": { 3 | "message": "Klik om fullscreen klok te starten" 4 | }, 5 | "description": { 6 | "message": "Biedt een nuttige toolbar klok en de optionele fullscreen klok." 7 | }, 8 | "name": { 9 | "message": "Klok" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/_locales/no/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "action_title": { 3 | "message": "Klikk for å starte fullskjerm klokke" 4 | }, 5 | "description": { 6 | "message": "Gir en nyttig verktøylinje klokke og tilleggsutstyr fullskjerm klokke." 7 | }, 8 | "name": { 9 | "message": "Clock" 10 | } 11 | } -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/_locales/pl/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "action_title": { 3 | "message": "Kliknij, aby uruchomi\u0107 tryb pe\u0142noekranowy zegar" 4 | }, 5 | "description": { 6 | "message": "Zawiera przydatne zegar paska narz\u0119dzi i opcjonalnie fullscreen zegara." 7 | }, 8 | "name": { 9 | "message": "Zegar" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/_locales/pt-BR/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "action_title": { 3 | "message": "Clique para iniciar relógio fullscreen" 4 | }, 5 | "description": { 6 | "message": "Fornece um relógio da barra de ferramentas úteis e relógio fullscreen opcional." 7 | }, 8 | "name": { 9 | "message": "Relógio" 10 | } 11 | } -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/_locales/pt-PT/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "action_title": { 3 | "message": "Clique para iniciar relógio fullscreen" 4 | }, 5 | "description": { 6 | "message": "Fornece um relógio da barra de ferramentas úteis e relógio fullscreen opcional." 7 | }, 8 | "name": { 9 | "message": "Relógio" 10 | } 11 | } -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/_locales/pt/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": { 3 | "message": "Este rel\u00F3gio fullscreen digital permite que voc\u00EA mude a cor do rel\u00F3gio, realizar contagens regressivas, e muito mais!" 4 | }, 5 | "name": { 6 | "message": "Rel\u00F3gio digital" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/_locales/pt_BR/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": { 3 | "message": "Este rel\u00F3gio fullscreen digital permite que voc\u00EA mude a cor do rel\u00F3gio, realizar contagens regressivas, e muito mais!" 4 | }, 5 | "name": { 6 | "message": "Rel\u00F3gio digital" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/_locales/pt_PT/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": { 3 | "message": "Este rel\u00F3gio fullscreen digital permite que voc\u00EA mude a cor do rel\u00F3gio, realizar contagens regressivas, e muito mais!" 4 | }, 5 | "name": { 6 | "message": "Rel\u00F3gio digital" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/_locales/ro/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "action_title": { 3 | "message": "Click aici pentru a porni ceasul pe tot ecranul" 4 | }, 5 | "description": { 6 | "message": "Ofer\u0103 un ceas bar\u0103 de instrumente utile \u015Fi ceas op\u0163ional fullscreen." 7 | }, 8 | "name": { 9 | "message": "Ceas" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/_locales/sk/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "action_title": { 3 | "message": "Kliknite na tla\u010Didlo pre spustenie fullscreen hod\u00EDn" 4 | }, 5 | "description": { 6 | "message": "Poskytuje u\u017Eito\u010Dn\u00FD panel n\u00E1strojov hodiny a hodiny volite\u013En\u00FD fullscreen." 7 | }, 8 | "name": { 9 | "message": "Hodiny" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/_locales/sl/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "action_title": { 3 | "message": "Klikni za za\u010Detek celozaslonski ure" 4 | }, 5 | "description": { 6 | "message": "Zagotavlja uporabno orodno vrstico uro in neobvezno celozaslonski uro." 7 | }, 8 | "name": { 9 | "message": "Ura" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/_locales/sr/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "action_title": { 3 | "message": "\u041A\u043B\u0438\u043A\u043D\u0438\u0442\u0435 \u0434\u0430 \u0431\u0438\u0441\u0442\u0435 \u0437\u0430\u043F\u043E\u0447\u0435\u043B\u0438 \u0446\u0435\u043B\u043E\u0433 \u0441\u0430\u0442\u0430" 4 | }, 5 | "description": { 6 | "message": "\u041F\u0440\u0443\u0436\u0430 \u043A\u043E\u0440\u0438\u0441\u0442\u0430\u043D \u0442\u0440\u0430\u0446\u0438 \u0441\u0430 \u0430\u043B\u0430\u0442\u043A\u0430\u043C\u0430 \u0441\u0430\u0442 \u0438 \u043E\u043F\u0446\u0438\u043E\u043D\u0438 \u0446\u0435\u043B\u043E\u0433 \u0441\u0430\u0442." 7 | }, 8 | "name": { 9 | "message": "\u0421\u0430\u0442" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/_locales/sv/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "action_title": { 3 | "message": "Klicka f\u00F6r att starta fullscreen klocka" 4 | }, 5 | "description": { 6 | "message": "Ger ett bra verktygsf\u00E4lt klocka och valfria fullscreen klocka." 7 | }, 8 | "name": { 9 | "message": "Klocka" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/_locales/sw/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": { 3 | "message": "Fullscreen huu saa digital inaruhusu mabadiliko ya rangi ya saa's, kufanya countdowns, na zaidi!" 4 | }, 5 | "name": { 6 | "message": "Digital Clock" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/_locales/th/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "action_title": { 3 | "message": "\u0E04\u0E25\u0E34\u0E01\u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E40\u0E23\u0E34\u0E48\u0E21\u0E19\u0E32\u0E2C\u0E34\u0E01\u0E32\u0E40\u0E15\u0E47\u0E21\u0E08\u0E2D" 4 | }, 5 | "description": { 6 | "message": "\u0E43\u0E2B\u0E49\u0E19\u0E32\u0E2C\u0E34\u0E01\u0E32\u0E41\u0E16\u0E1A\u0E40\u0E04\u0E23\u0E37\u0E48\u0E2D\u0E07\u0E21\u0E37\u0E2D\u0E17\u0E35\u0E48\u0E21\u0E35\u0E1B\u0E23\u0E30\u0E42\u0E22\u0E0A\u0E19\u0E4C\u0E41\u0E25\u0E30\u0E19\u0E32\u0E2C\u0E34\u0E01\u0E32\u0E40\u0E15\u0E47\u0E21\u0E08\u0E2D\u0E44\u0E21\u0E48\u0E08\u0E33\u0E40\u0E1B\u0E47\u0E19" 7 | }, 8 | "name": { 9 | "message": "\u0E19\u0E32\u0E2C\u0E34\u0E01\u0E32" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/_locales/tr/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "action_title": { 3 | "message": "Tam ekran saat ba\u015Flatmak i\u00E7in t\u0131klay\u0131n" 4 | }, 5 | "description": { 6 | "message": "Yararl\u0131 bir ara\u00E7 \u00E7ubu\u011Fu saat ve iste\u011Fe ba\u011Fl\u0131 tam ekran saat sa\u011Flar." 7 | }, 8 | "name": { 9 | "message": "Saat" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/_locales/vi/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "action_title": { 3 | "message": "Nh\u1EA5n v\u00E0o \u0111\u00E2y \u0111\u1EC3 b\u1EAFt \u0111\u1EA7u \u0111\u1ED3ng h\u1ED3 to\u00E0n m\u00E0n h\u00ECnh" 4 | }, 5 | "description": { 6 | "message": "Cung c\u1EA5p m\u1ED9t chi\u1EBFc \u0111\u1ED3ng h\u1ED3 tr\u00EAn thanh c\u00F4ng c\u1EE5 h\u1EEFu \u00EDch v\u00E0 \u0111\u1ED3ng h\u1ED3 to\u00E0n m\u00E0n h\u00ECnh t\u00F9y ch\u1ECDn." 7 | }, 8 | "name": { 9 | "message": "\u0110\u1ED3ng h\u1ED3" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/_locales/zh-CN/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "action_title": { 3 | "message": "点击开始全屏时钟" 4 | }, 5 | "description": { 6 | "message": "提供了一个有用的工具栏上的时钟和可选的全屏时钟。" 7 | }, 8 | "name": { 9 | "message": "时钟" 10 | } 11 | } -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/_locales/zh-TW/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "action_title": { 3 | "message": "點擊開始全屏時鐘" 4 | }, 5 | "description": { 6 | "message": "提供一個有用的工具欄上的時鐘和可選的全屏時鐘。" 7 | }, 8 | "name": { 9 | "message": "時鐘" 10 | } 11 | } -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/_locales/zh/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": { 3 | "message": "\u8FD9\u5168\u5C4F\u6570\u5B57\u65F6\u949F\u5141\u8BB8\u4F60\u6539\u53D8\u65F6\u949F\u7684\u989C\u8272\uFF0C\u8FDB\u884C\u5012\u8BA1\u65F6\uFF0C\u4EE5\u53CA\u66F4\u591A\uFF01" 4 | }, 5 | "name": { 6 | "message": "\u6570\u5B57\u65F6\u949F" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/_locales/zh_CN/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": { 3 | "message": "\u8FD9\u5168\u5C4F\u6570\u5B57\u65F6\u949F\u5141\u8BB8\u4F60\u6539\u53D8\u65F6\u949F\u7684\u989C\u8272\uFF0C\u8FDB\u884C\u5012\u8BA1\u65F6\uFF0C\u4EE5\u53CA\u66F4\u591A\uFF01" 4 | }, 5 | "name": { 6 | "message": "\u6570\u5B57\u65F6\u949F" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/_locales/zh_TW/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": { 3 | "message": "\u9019\u5168\u5C4F\u6578\u5B57\u6642\u9418\u5141\u8A31\u4F60\u6539\u8B8A\u6642\u9418\u7684\u984F\u8272\uFF0C\u9032\u884C\u5012\u8A08\u6642\uFF0C\u4EE5\u53CA\u66F4\u591A\uFF01" 4 | }, 5 | "name": { 6 | "message": "\u6578\u5B57\u6642\u9418" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/content.js: -------------------------------------------------------------------------------- 1 | (function() {var b=window.localStorage;window.onload=function(){document.getElementById("extNotifyDiv").addEventListener("optChange",function(){var a={};a.is_12_hour_mode="true"===b.is_12_hour_mode;a.cext_badge_bgcolor=b.cext_badge_bgcolor;a.cext_badge_icon_filename=b.cext_badge_icon_filename;chrome.extension.sendRequest(a)},!1)};})(); 2 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/icon_128.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/icon_16.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/icon_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/icon_19.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/options.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Options 6 | 7 | 24 | 25 | 26 |
27 | 28 | 29 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/options.js: -------------------------------------------------------------------------------- 1 | /* Waiting for onload ensures spinner is displayed */ 2 | window.onload = function() { 3 | window.location = "http://enjoy.your-clock.com/ext-options"; 4 | }; 5 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/spin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/spin.gif -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/1_1.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/1_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/1_10.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/1_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/1_11.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/1_1_i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/1_1_i.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/1_2.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/1_2_i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/1_2_i.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/1_3.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/1_3_i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/1_3_i.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/1_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/1_4.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/1_4_i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/1_4_i.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/1_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/1_5.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/1_5_i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/1_5_i.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/1_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/1_6.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/1_6_i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/1_6_i.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/1_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/1_7.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/1_7_i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/1_7_i.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/1_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/1_8.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/1_8_i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/1_8_i.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/1_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/1_9.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/2_1.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/2_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/2_10.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/2_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/2_11.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/2_1_i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/2_1_i.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/2_2.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/2_2_i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/2_2_i.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/2_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/2_3.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/2_3_i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/2_3_i.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/2_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/2_4.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/2_4_i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/2_4_i.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/2_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/2_5.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/2_5_i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/2_5_i.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/2_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/2_6.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/2_6_i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/2_6_i.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/2_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/2_7.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/2_7_i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/2_7_i.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/2_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/2_8.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/2_8_i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/2_8_i.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/2_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/mjocghlclkpgheifflemilcnblodjohg/1.16_0/toolbar_icons/2_9.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/_locales/bg/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "app_description": { 3 | "message": "Плащания в уеб магазина на Chrome" 4 | }, 5 | "app_name": { 6 | "message": "Плащания в уеб магазина на Chrome" 7 | }, 8 | "craw_app_unavailable": { 9 | "message": "Понастоящем няма достъп до приложението." 10 | }, 11 | "craw_connect_to_network": { 12 | "message": "Моля, свържете се с мрежа." 13 | }, 14 | "iap_unavailable": { 15 | "message": "Понастоящем няма достъп до вградената система за плащания." 16 | }, 17 | "jwt_retrieve_failed": { 18 | "message": "Транзакцията не можа да бъде завършена. Моля, опитайте отново по-късно." 19 | }, 20 | "please_sign_in": { 21 | "message": "Моля, влезте в Chrome." 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/_locales/ca/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "app_description": { 3 | "message": "Sistema de pagaments de Chrome Web Store" 4 | }, 5 | "app_name": { 6 | "message": "Sistema de pagaments de Chrome Web Store" 7 | }, 8 | "craw_app_unavailable": { 9 | "message": "Ara mateix aquesta aplicació no està disponible." 10 | }, 11 | "craw_connect_to_network": { 12 | "message": "Connecteu-vos a una xarxa." 13 | }, 14 | "iap_unavailable": { 15 | "message": "La funció Pagaments a l'aplicació no està disponible actualment." 16 | }, 17 | "jwt_retrieve_failed": { 18 | "message": "No s'ha pogut completar la transacció. Torneu-ho a provar més tard." 19 | }, 20 | "please_sign_in": { 21 | "message": "Inicieu la sessió a Chrome." 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/_locales/cs/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "app_description": { 3 | "message": "Platby Internetového obchodu Chrome" 4 | }, 5 | "app_name": { 6 | "message": "Platby Internetového obchodu Chrome" 7 | }, 8 | "craw_app_unavailable": { 9 | "message": "Aplikace v současné době není dostupná." 10 | }, 11 | "craw_connect_to_network": { 12 | "message": "Připojte se prosím k síti." 13 | }, 14 | "iap_unavailable": { 15 | "message": "Platby v aplikaci aktuálně nejsou k dispozici." 16 | }, 17 | "jwt_retrieve_failed": { 18 | "message": "Transakci nebylo možné dokončit. Zkuste to znovu později." 19 | }, 20 | "please_sign_in": { 21 | "message": "Přihlaste se do Chromu." 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/_locales/da/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "app_description": { 3 | "message": "Betalinger i Chrome Webshop" 4 | }, 5 | "app_name": { 6 | "message": "Betalinger i Chrome Webshop" 7 | }, 8 | "craw_app_unavailable": { 9 | "message": "Appen er ikke tilgængelig i øjeblikket." 10 | }, 11 | "craw_connect_to_network": { 12 | "message": "Opret forbindelse til et netværk." 13 | }, 14 | "iap_unavailable": { 15 | "message": "Betaling i appen er ikke tilgængelig i øjeblikket." 16 | }, 17 | "jwt_retrieve_failed": { 18 | "message": "Transaktionen kunne ikke gennemføres. Prøv igen senere." 19 | }, 20 | "please_sign_in": { 21 | "message": "Log ind på Chrome." 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/_locales/de/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "app_description": { 3 | "message": "Chrome Web Store-Zahlungen" 4 | }, 5 | "app_name": { 6 | "message": "Chrome Web Store-Zahlungen" 7 | }, 8 | "craw_app_unavailable": { 9 | "message": "Die App ist momentan nicht verfügbar." 10 | }, 11 | "craw_connect_to_network": { 12 | "message": "Bitte stellen Sie eine Verbindung zu einem Netzwerk her." 13 | }, 14 | "iap_unavailable": { 15 | "message": "In-App-Zahlungen sind momentan nicht möglich." 16 | }, 17 | "jwt_retrieve_failed": { 18 | "message": "Die Transaktion konnte nicht abgeschlossen werden. Bitte versuchen Sie es später erneut." 19 | }, 20 | "please_sign_in": { 21 | "message": "Bitte melden Sie sich in Chrome an." 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/_locales/el/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "app_description": { 3 | "message": "Πληρωμές στο Chrome Web Store" 4 | }, 5 | "app_name": { 6 | "message": "Πληρωμές στο Chrome Web Store" 7 | }, 8 | "craw_app_unavailable": { 9 | "message": "Η εφαρμογή προς το παρόν δεν είναι διαθέσιμη." 10 | }, 11 | "craw_connect_to_network": { 12 | "message": "Συνδεθείτε σε ένα δίκτυο." 13 | }, 14 | "iap_unavailable": { 15 | "message": "Οι πληρωμές εντός εφαρμογών δεν είναι αυτήν τη στιγμή διαθέσιμες." 16 | }, 17 | "jwt_retrieve_failed": { 18 | "message": "Δεν ήταν δυνατή η ολοκλήρωση της συναλλαγής. Δοκιμάστε ξανά αργότερα." 19 | }, 20 | "please_sign_in": { 21 | "message": "Συνδεθείτε στο Chrome." 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/_locales/en/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "app_description": { 3 | "message": "Chrome Web Store Payments" 4 | }, 5 | "app_name": { 6 | "message": "Chrome Web Store Payments" 7 | }, 8 | "craw_app_unavailable": { 9 | "message": "App currently unavailable." 10 | }, 11 | "craw_connect_to_network": { 12 | "message": "Please connect to a network." 13 | }, 14 | "iap_unavailable": { 15 | "message": "In-App Payments is currently unavailable." 16 | }, 17 | "jwt_retrieve_failed": { 18 | "message": "The transaction could not be completed. Please try again later." 19 | }, 20 | "please_sign_in": { 21 | "message": "Please sign into Chrome." 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/_locales/en_GB/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "app_description": { 3 | "message": "Chrome Web Store Payments" 4 | }, 5 | "app_name": { 6 | "message": "Chrome Web Store Payments" 7 | }, 8 | "craw_app_unavailable": { 9 | "message": "App currently unavailable." 10 | }, 11 | "craw_connect_to_network": { 12 | "message": "Please connect to a network." 13 | }, 14 | "iap_unavailable": { 15 | "message": "In-App Payments is currently unavailable." 16 | }, 17 | "jwt_retrieve_failed": { 18 | "message": "The transaction could not be completed. Please try again later." 19 | }, 20 | "please_sign_in": { 21 | "message": "Please sign into Chrome." 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/_locales/es/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "app_description": { 3 | "message": "Sistema de pagos de Chrome Web Store" 4 | }, 5 | "app_name": { 6 | "message": "Sistema de pagos de Chrome Web Store" 7 | }, 8 | "craw_app_unavailable": { 9 | "message": "Esta aplicación no está disponible en este momento." 10 | }, 11 | "craw_connect_to_network": { 12 | "message": "Conéctate a una red." 13 | }, 14 | "iap_unavailable": { 15 | "message": "Los pagos en la aplicación no están disponibles en este momento." 16 | }, 17 | "jwt_retrieve_failed": { 18 | "message": "No se ha podido completar la transacción. Vuelve a intentarlo más tarde." 19 | }, 20 | "please_sign_in": { 21 | "message": "Inicia sesión en Chrome." 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/_locales/es_419/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "app_description": { 3 | "message": "Sistema de pagos de Chrome Web Store" 4 | }, 5 | "app_name": { 6 | "message": "Sistema de pagos de Chrome Web Store" 7 | }, 8 | "craw_app_unavailable": { 9 | "message": "Esta aplicación no está disponible en este momento." 10 | }, 11 | "craw_connect_to_network": { 12 | "message": "Conéctate a una red." 13 | }, 14 | "iap_unavailable": { 15 | "message": "En este momento, Pagos En-Apps no está disponible." 16 | }, 17 | "jwt_retrieve_failed": { 18 | "message": "No se pudo completar la transacción. Vuelve a intentarlo más tarde." 19 | }, 20 | "please_sign_in": { 21 | "message": "Accede a Chrome." 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/_locales/et/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "app_description": { 3 | "message": "Chrome'i veebipoe maksed" 4 | }, 5 | "app_name": { 6 | "message": "Chrome'i veebipoe maksed" 7 | }, 8 | "craw_app_unavailable": { 9 | "message": "Rakendus pole praegu saadaval." 10 | }, 11 | "craw_connect_to_network": { 12 | "message": "Looge ühendus võrguga." 13 | }, 14 | "iap_unavailable": { 15 | "message": "Rakendusesisesed maksed ei ole praegu saadaval." 16 | }, 17 | "jwt_retrieve_failed": { 18 | "message": "Tehingut ei saa lõpule viia. Proovige hiljem uuesti." 19 | }, 20 | "please_sign_in": { 21 | "message": "Logige Chrome'i sisse." 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/_locales/fi/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "app_description": { 3 | "message": "Chrome Web Storen maksut" 4 | }, 5 | "app_name": { 6 | "message": "Chrome Web Storen maksut" 7 | }, 8 | "craw_app_unavailable": { 9 | "message": "Sovellus ei ole tällä hetkellä käytettävissä." 10 | }, 11 | "craw_connect_to_network": { 12 | "message": "Muodosta verkkoyhteys." 13 | }, 14 | "iap_unavailable": { 15 | "message": "Sovelluksen sisäiset maksut eivät ole tällä hetkellä käytettävissä." 16 | }, 17 | "jwt_retrieve_failed": { 18 | "message": "Tapahtumaa ei voi suorittaa loppuun. Yritä myöhemmin uudelleen." 19 | }, 20 | "please_sign_in": { 21 | "message": "Kirjaudu sisään Chromeen." 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/_locales/fil/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "app_description": { 3 | "message": "Mga Pagbabayad sa Chrome Web Store" 4 | }, 5 | "app_name": { 6 | "message": "Mga Pagbabayad sa Chrome Web Store" 7 | }, 8 | "craw_app_unavailable": { 9 | "message": "Kasalukuyang hindi available ang app." 10 | }, 11 | "craw_connect_to_network": { 12 | "message": "Mangyaring kumonekta sa isang network." 13 | }, 14 | "iap_unavailable": { 15 | "message": "Kasalukuyang hindi available ang Mga Pagbabayad na In-App." 16 | }, 17 | "jwt_retrieve_failed": { 18 | "message": "Hindi makumpleto ang transaksyon. Pakisubukang muli sa ibang pagkakataon." 19 | }, 20 | "please_sign_in": { 21 | "message": "Mangyaring mag-sign in sa Chrome." 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/_locales/hi/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "app_description": { 3 | "message": "Chrome वेब स्टोर भुगतान" 4 | }, 5 | "app_name": { 6 | "message": "Chrome वेब स्टोर भुगतान" 7 | }, 8 | "craw_app_unavailable": { 9 | "message": "ऐप्स वर्तमान में अनुपलब्ध." 10 | }, 11 | "craw_connect_to_network": { 12 | "message": "कृपया नेटवर्क से कनेक्ट करें." 13 | }, 14 | "iap_unavailable": { 15 | "message": "इन-ऐप भुगतान अभी उपलब्ध नहीं है." 16 | }, 17 | "jwt_retrieve_failed": { 18 | "message": "लेन-देन पूर्ण नहीं किया जा सका. कृपया बाद में पुन: प्रयास करें." 19 | }, 20 | "please_sign_in": { 21 | "message": "कृपया Chrome में प्रवेश करें." 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/_locales/hr/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "app_description": { 3 | "message": "Plaćanja u web-trgovini Chrome" 4 | }, 5 | "app_name": { 6 | "message": "Plaćanja u web-trgovini Chrome" 7 | }, 8 | "craw_app_unavailable": { 9 | "message": "Aplikacija trenutačno nije dostupna." 10 | }, 11 | "craw_connect_to_network": { 12 | "message": "Povežite se s mrežom." 13 | }, 14 | "iap_unavailable": { 15 | "message": "Plaćanje u aplikaciji trenutačno nije dostupno." 16 | }, 17 | "jwt_retrieve_failed": { 18 | "message": "Transakcija nije dovršena. Pokušajte ponovo kasnije." 19 | }, 20 | "please_sign_in": { 21 | "message": "Prijavite se na Chrome." 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/_locales/hu/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "app_description": { 3 | "message": "Chrome Internetes áruház Fizetési rendszere" 4 | }, 5 | "app_name": { 6 | "message": "Chrome Internetes áruház Fizetési rendszere" 7 | }, 8 | "craw_app_unavailable": { 9 | "message": "Az alkalmazás jelenleg nem érhető el." 10 | }, 11 | "craw_connect_to_network": { 12 | "message": "Kérjük, csatlakozzon egy hálózathoz." 13 | }, 14 | "iap_unavailable": { 15 | "message": "Az alkalmazáson belüli fizetés jelenleg nem érhető el." 16 | }, 17 | "jwt_retrieve_failed": { 18 | "message": "A tranzakciót nem sikerült befejezni. Próbálja újra később." 19 | }, 20 | "please_sign_in": { 21 | "message": "Jelentkezzen be a Chrome-ba." 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/_locales/id/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "app_description": { 3 | "message": "Pembayaran Toko Web Chrome" 4 | }, 5 | "app_name": { 6 | "message": "Pembayaran Toko Web Chrome" 7 | }, 8 | "craw_app_unavailable": { 9 | "message": "Aplikasi tidak tersedia saat ini." 10 | }, 11 | "craw_connect_to_network": { 12 | "message": "Sambungkan ke jaringan." 13 | }, 14 | "iap_unavailable": { 15 | "message": "Pembayaran Dalam Aplikasi saat ini tidak tersedia." 16 | }, 17 | "jwt_retrieve_failed": { 18 | "message": "Transaksi tidak dapat diselesaikan. Coba lagi nanti." 19 | }, 20 | "please_sign_in": { 21 | "message": "Harap masuk ke Chrome." 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/_locales/it/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "app_description": { 3 | "message": "Pagamenti Chrome Web Store" 4 | }, 5 | "app_name": { 6 | "message": "Pagamenti Chrome Web Store" 7 | }, 8 | "craw_app_unavailable": { 9 | "message": "App al momento non disponibile." 10 | }, 11 | "craw_connect_to_network": { 12 | "message": "Collegati a una rete." 13 | }, 14 | "iap_unavailable": { 15 | "message": "La funzione Pagamenti In-App non è al momento disponibile." 16 | }, 17 | "jwt_retrieve_failed": { 18 | "message": "Impossibile completare la transazione. Riprova più tardi." 19 | }, 20 | "please_sign_in": { 21 | "message": "Accedi a Chrome." 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/_locales/ja/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "app_description": { 3 | "message": "Chrome ウェブストア決済" 4 | }, 5 | "app_name": { 6 | "message": "Chrome ウェブストア決済" 7 | }, 8 | "craw_app_unavailable": { 9 | "message": "アプリは現在ご利用いただけません。" 10 | }, 11 | "craw_connect_to_network": { 12 | "message": "ネットワークに接続してください。" 13 | }, 14 | "iap_unavailable": { 15 | "message": "アプリ内ペイメントは現在ご利用いただけません。" 16 | }, 17 | "jwt_retrieve_failed": { 18 | "message": "トランザクションを完了できませんでした。しばらくしてからもう一度お試しください。" 19 | }, 20 | "please_sign_in": { 21 | "message": "Chrome にログインしてください。" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/_locales/ko/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "app_description": { 3 | "message": "Chrome 웹 스토어 결제" 4 | }, 5 | "app_name": { 6 | "message": "Chrome 웹 스토어 결제" 7 | }, 8 | "craw_app_unavailable": { 9 | "message": "현재 앱을 사용할 수 없습니다." 10 | }, 11 | "craw_connect_to_network": { 12 | "message": "네트워크에 연결하세요." 13 | }, 14 | "iap_unavailable": { 15 | "message": "현재 인앱 결제를 사용할 수 없습니다." 16 | }, 17 | "jwt_retrieve_failed": { 18 | "message": "거래를 완료하지 못했습니다. 나중에 다시 시도해 주세요." 19 | }, 20 | "please_sign_in": { 21 | "message": "Chrome에 로그인하세요." 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/_locales/lt/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "app_description": { 3 | "message": "„Chrome“ internetinės parduotuvės mokėjimo sistema" 4 | }, 5 | "app_name": { 6 | "message": "„Chrome“ internetinės parduotuvės mokėjimo sistema" 7 | }, 8 | "craw_app_unavailable": { 9 | "message": "Programa šiuo metu negalima." 10 | }, 11 | "craw_connect_to_network": { 12 | "message": "Prisijunkite prie tinklo." 13 | }, 14 | "iap_unavailable": { 15 | "message": "Mokėjimai programoje šiuo metu negalimi." 16 | }, 17 | "jwt_retrieve_failed": { 18 | "message": "Nepavyko užbaigti operacijos. Vėliau bandykite dar kartą." 19 | }, 20 | "please_sign_in": { 21 | "message": "Prisijunkite prie „Chrome“." 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/_locales/lv/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "app_description": { 3 | "message": "Chrome interneta veikala maksājumu sistēma" 4 | }, 5 | "app_name": { 6 | "message": "Chrome interneta veikala maksājumu sistēma" 7 | }, 8 | "craw_app_unavailable": { 9 | "message": "Lietotne pagaidām nav pieejama." 10 | }, 11 | "craw_connect_to_network": { 12 | "message": "Lūdzu, izveidojiet savienojumu ar tīklu." 13 | }, 14 | "iap_unavailable": { 15 | "message": "Maksājumi lietotnēs pašlaik nav pieejami." 16 | }, 17 | "jwt_retrieve_failed": { 18 | "message": "Transakciju nevarēja pabeigt. Lūdzu, vēlāk mēģiniet vēlreiz." 19 | }, 20 | "please_sign_in": { 21 | "message": "Lūdzu, pierakstieties pārlūkā Chrome." 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/_locales/nb/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "app_description": { 3 | "message": "Chrome Nettmarked-betalinger" 4 | }, 5 | "app_name": { 6 | "message": "Chrome Nettmarked-betalinger" 7 | }, 8 | "craw_app_unavailable": { 9 | "message": "Appen er utilgjengelig for øyeblikket." 10 | }, 11 | "craw_connect_to_network": { 12 | "message": "Du må koble til et nettverk." 13 | }, 14 | "iap_unavailable": { 15 | "message": "Betaling i app er ikke tilgjengelig for øyeblikket." 16 | }, 17 | "jwt_retrieve_failed": { 18 | "message": "Transaksjonen kunne ikke fullføres. Prøv på nytt senere." 19 | }, 20 | "please_sign_in": { 21 | "message": "Du må logge på Chrome." 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/_locales/nl/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "app_description": { 3 | "message": "Betalingen via Chrome Web Store" 4 | }, 5 | "app_name": { 6 | "message": "Betalingen via Chrome Web Store" 7 | }, 8 | "craw_app_unavailable": { 9 | "message": "App momenteel niet beschikbaar." 10 | }, 11 | "craw_connect_to_network": { 12 | "message": "Maak verbinding met een netwerk." 13 | }, 14 | "iap_unavailable": { 15 | "message": "In-app-betalingen is momenteel niet beschikbaar." 16 | }, 17 | "jwt_retrieve_failed": { 18 | "message": "De transactie kan niet worden voltooid. Probeer het later opnieuw." 19 | }, 20 | "please_sign_in": { 21 | "message": "Log in bij Chrome." 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/_locales/pl/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "app_description": { 3 | "message": "Płatności w sklepie Chrome Web Store" 4 | }, 5 | "app_name": { 6 | "message": "Płatności w sklepie Chrome Web Store" 7 | }, 8 | "craw_app_unavailable": { 9 | "message": "Aplikacja jest obecnie niedostępna." 10 | }, 11 | "craw_connect_to_network": { 12 | "message": "Połącz się z siecią." 13 | }, 14 | "iap_unavailable": { 15 | "message": "Płatności w ramach aplikacji są teraz niedostępne." 16 | }, 17 | "jwt_retrieve_failed": { 18 | "message": "Nie udało się zrealizować transakcji. Spróbuj ponownie później." 19 | }, 20 | "please_sign_in": { 21 | "message": "Zaloguj się w Chrome." 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/_locales/pt_BR/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "app_description": { 3 | "message": "Pagamentos da Chrome Web Store" 4 | }, 5 | "app_name": { 6 | "message": "Pagamentos da Chrome Web Store" 7 | }, 8 | "craw_app_unavailable": { 9 | "message": "Aplicativo indisponível no momento." 10 | }, 11 | "craw_connect_to_network": { 12 | "message": "Conecte-se a uma rede." 13 | }, 14 | "iap_unavailable": { 15 | "message": "No momento, os Pagamentos no aplicativo não estão disponíveis." 16 | }, 17 | "jwt_retrieve_failed": { 18 | "message": "Não foi possível concluir a transação. Tente novamente mais tarde." 19 | }, 20 | "please_sign_in": { 21 | "message": "Faça login no Google Chrome." 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/_locales/pt_PT/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "app_description": { 3 | "message": "Pagamentos via Chrome Web Store" 4 | }, 5 | "app_name": { 6 | "message": "Pagamentos via Chrome Web Store" 7 | }, 8 | "craw_app_unavailable": { 9 | "message": "Aplicação atualmente indisponível." 10 | }, 11 | "craw_connect_to_network": { 12 | "message": "Ligue-se a uma rede." 13 | }, 14 | "iap_unavailable": { 15 | "message": "Os Pagamentos na Aplicação estão atualmente indisponíveis." 16 | }, 17 | "jwt_retrieve_failed": { 18 | "message": "Não foi possível concluir a transação. Tente novamente mais tarde." 19 | }, 20 | "please_sign_in": { 21 | "message": "Inicie sessão no Chrome." 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/_locales/ro/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "app_description": { 3 | "message": "Plăți prin Magazinul web Chrome" 4 | }, 5 | "app_name": { 6 | "message": "Plăți prin Magazinul web Chrome" 7 | }, 8 | "craw_app_unavailable": { 9 | "message": "În prezent, aplicația nu este disponibilă." 10 | }, 11 | "craw_connect_to_network": { 12 | "message": "Conectează-te la o rețea." 13 | }, 14 | "iap_unavailable": { 15 | "message": "Plățile în aplicație nu sunt disponibile momentan." 16 | }, 17 | "jwt_retrieve_failed": { 18 | "message": "Tranzacția nu s-a putut finaliza. Încearcă din nou mai târziu." 19 | }, 20 | "please_sign_in": { 21 | "message": "Conectează-te la Chrome." 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/_locales/ru/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "app_description": { 3 | "message": "Платежная система Интернет-магазина Chrome" 4 | }, 5 | "app_name": { 6 | "message": "Платежная система Интернет-магазина Chrome" 7 | }, 8 | "craw_app_unavailable": { 9 | "message": "Приложение недоступно." 10 | }, 11 | "craw_connect_to_network": { 12 | "message": "Подключитесь к сети." 13 | }, 14 | "iap_unavailable": { 15 | "message": "Платежи через приложения недоступны." 16 | }, 17 | "jwt_retrieve_failed": { 18 | "message": "Произошла ошибка. Повторите попытку позже." 19 | }, 20 | "please_sign_in": { 21 | "message": "Войдите в Chrome." 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/_locales/sk/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "app_description": { 3 | "message": "Platby Internetového obchodu Chrome" 4 | }, 5 | "app_name": { 6 | "message": "Platby Internetového obchodu Chrome" 7 | }, 8 | "craw_app_unavailable": { 9 | "message": "Aplikácia momentálne nie je dostupná." 10 | }, 11 | "craw_connect_to_network": { 12 | "message": "Pripojte sa k sieti." 13 | }, 14 | "iap_unavailable": { 15 | "message": "Platby v aplikácii momentálne nie sú k dispozícii." 16 | }, 17 | "jwt_retrieve_failed": { 18 | "message": "Transakciu nebolo možné dokončiť. Skúste to znova neskôr." 19 | }, 20 | "please_sign_in": { 21 | "message": "Prihláste sa do prehliadača Chrome." 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/_locales/sl/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "app_description": { 3 | "message": "Plačila v spletni trgovini Chrome" 4 | }, 5 | "app_name": { 6 | "message": "Plačila v spletni trgovini Chrome" 7 | }, 8 | "craw_app_unavailable": { 9 | "message": "Aplikacija trenutno ni na voljo." 10 | }, 11 | "craw_connect_to_network": { 12 | "message": "Povežite se z omrežjem." 13 | }, 14 | "iap_unavailable": { 15 | "message": "Plačila v aplikacijah trenutno niso na voljo." 16 | }, 17 | "jwt_retrieve_failed": { 18 | "message": "Transakcije ni bilo mogoče dokončati. Poskusite znova pozneje." 19 | }, 20 | "please_sign_in": { 21 | "message": "Prijavite se v Chrome." 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/_locales/sr/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "app_description": { 3 | "message": "Плаћања у Chrome веб-продавници" 4 | }, 5 | "app_name": { 6 | "message": "Плаћања у Chrome веб-продавници" 7 | }, 8 | "craw_app_unavailable": { 9 | "message": "Апликација је тренутно недоступна." 10 | }, 11 | "craw_connect_to_network": { 12 | "message": "Повежите са мрежом." 13 | }, 14 | "iap_unavailable": { 15 | "message": "Плаћања у апликацији су тренутно недоступна." 16 | }, 17 | "jwt_retrieve_failed": { 18 | "message": "Није могуће довршити трансакцију. Покушајте поново касније." 19 | }, 20 | "please_sign_in": { 21 | "message": "Пријавите се у Chrome." 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/_locales/sv/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "app_description": { 3 | "message": "Betalning via Chrome Web Store" 4 | }, 5 | "app_name": { 6 | "message": "Betalning via Chrome Web Store" 7 | }, 8 | "craw_app_unavailable": { 9 | "message": "Appen är inte tillgänglig för tillfället." 10 | }, 11 | "craw_connect_to_network": { 12 | "message": "Anslut till ett nätverk." 13 | }, 14 | "iap_unavailable": { 15 | "message": "Betalning i appen är inte tillgängligt för närvarande." 16 | }, 17 | "jwt_retrieve_failed": { 18 | "message": "Transaktionen kunde inte slutföras. Försök igen senare." 19 | }, 20 | "please_sign_in": { 21 | "message": "Logga in i Chrome." 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/_locales/th/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "app_description": { 3 | "message": "ระบบชำระเงินของ Chrome เว็บสโตร์" 4 | }, 5 | "app_name": { 6 | "message": "ระบบชำระเงินของ Chrome เว็บสโตร์" 7 | }, 8 | "craw_app_unavailable": { 9 | "message": "ไม่สามารถใช้งานแอปได้ในขณะนี้" 10 | }, 11 | "craw_connect_to_network": { 12 | "message": "โปรดเชื่อมต่อกับเครือข่าย" 13 | }, 14 | "iap_unavailable": { 15 | "message": "ระบบชำระเงินในแอปพลิเคชันไม่พร้อมใช้งานในขณะนี้" 16 | }, 17 | "jwt_retrieve_failed": { 18 | "message": "ไม่สามารถดำเนินการธุรกรรมให้เสร็จสิ้นได้ โปรดลองอีกครั้งในภายหลัง" 19 | }, 20 | "please_sign_in": { 21 | "message": "โปรดลงชื่อเข้าใช้ Chrome" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/_locales/tr/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "app_description": { 3 | "message": "Chrome Web Mağazası Ödemeleri" 4 | }, 5 | "app_name": { 6 | "message": "Chrome Web Mağazası Ödemeleri" 7 | }, 8 | "craw_app_unavailable": { 9 | "message": "Uygulama şu anda kullanılamıyor." 10 | }, 11 | "craw_connect_to_network": { 12 | "message": "Lütfen bir ağa bağlanın." 13 | }, 14 | "iap_unavailable": { 15 | "message": "Uygulama İçi Ödemeler şu anda kullanılamaz." 16 | }, 17 | "jwt_retrieve_failed": { 18 | "message": "İşlem tamamlanamadı. Lütfen daha sonra tekrar deneyin." 19 | }, 20 | "please_sign_in": { 21 | "message": "Lütfen Chrome'da oturum açın." 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/_locales/uk/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "app_description": { 3 | "message": "Платежі Веб-магазину Chrome" 4 | }, 5 | "app_name": { 6 | "message": "Платежі Веб-магазину Chrome" 7 | }, 8 | "craw_app_unavailable": { 9 | "message": "Програма тимчасово недоступна." 10 | }, 11 | "craw_connect_to_network": { 12 | "message": "Під’єднайтеся до мережі." 13 | }, 14 | "iap_unavailable": { 15 | "message": "Платежі через програму зараз не доступні." 16 | }, 17 | "jwt_retrieve_failed": { 18 | "message": "Не вдалося завершити трансакцію. Повторіть спробу пізніше." 19 | }, 20 | "please_sign_in": { 21 | "message": "Увійдіть у Chrome." 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/_locales/vi/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "app_description": { 3 | "message": "Thanh toán trên cửa hàng Chrome trực tuyến" 4 | }, 5 | "app_name": { 6 | "message": "Thanh toán trên cửa hàng Chrome trực tuyến" 7 | }, 8 | "craw_app_unavailable": { 9 | "message": "Ứng dụng hiện không khả dụng." 10 | }, 11 | "craw_connect_to_network": { 12 | "message": "Vui lòng kết nối với mạng." 13 | }, 14 | "iap_unavailable": { 15 | "message": "Thanh toán trong ứng dụng hiện không khả dụng." 16 | }, 17 | "jwt_retrieve_failed": { 18 | "message": "Không thể hoàn tất giao dịch. Vui lòng thử lại sau." 19 | }, 20 | "please_sign_in": { 21 | "message": "Vui lòng đăng nhập vào Chrome." 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/_locales/zh_CN/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "app_description": { 3 | "message": "Chrome 网上应用店付款系统" 4 | }, 5 | "app_name": { 6 | "message": "Chrome 网上应用店付款系统" 7 | }, 8 | "craw_app_unavailable": { 9 | "message": "应用目前无法使用。" 10 | }, 11 | "craw_connect_to_network": { 12 | "message": "请连接到网络。" 13 | }, 14 | "iap_unavailable": { 15 | "message": "目前无法使用应用内付款。" 16 | }, 17 | "jwt_retrieve_failed": { 18 | "message": "交易无法完成,请稍后重试。" 19 | }, 20 | "please_sign_in": { 21 | "message": "请登录 Chrome。" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/_locales/zh_TW/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "app_description": { 3 | "message": "Chrome 線上應用程式商店付款系統" 4 | }, 5 | "app_name": { 6 | "message": "Chrome 線上應用程式商店付款系統" 7 | }, 8 | "craw_app_unavailable": { 9 | "message": "目前無法使用這個應用程式。" 10 | }, 11 | "craw_connect_to_network": { 12 | "message": "請連上網路。" 13 | }, 14 | "iap_unavailable": { 15 | "message": "目前無法使用應用程式內付款功能。" 16 | }, 17 | "jwt_retrieve_failed": { 18 | "message": "無法完成這項交易,請稍後再試。" 19 | }, 20 | "please_sign_in": { 21 | "message": "請登入 Chrome。" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/images/flapper.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/images/flapper.gif -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/images/icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/images/icon_128.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/images/icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/images/icon_16.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/images/topbar_floating_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/images/topbar_floating_button.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/images/topbar_floating_button_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/images/topbar_floating_button_close.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/images/topbar_floating_button_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/images/topbar_floating_button_hover.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/images/topbar_floating_button_maximize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/images/topbar_floating_button_maximize.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/images/topbar_floating_button_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Extensions/nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.0_0/images/topbar_floating_button_pressed.png -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Favicons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Favicons -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Favicons-journal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Favicons-journal -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/GPUCache/data_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/GPUCache/data_0 -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/GPUCache/data_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/GPUCache/data_1 -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/GPUCache/data_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/GPUCache/data_2 -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/GPUCache/data_3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/GPUCache/data_3 -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/GPUCache/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/GPUCache/index -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/History: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/History -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/History-journal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/History-journal -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Local Storage/chrome-extension_mclkkofklkfljcocdinagocijmpgbhab_0.localstorage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Local Storage/chrome-extension_mclkkofklkfljcocdinagocijmpgbhab_0.localstorage -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Local Storage/chrome-extension_mclkkofklkfljcocdinagocijmpgbhab_0.localstorage-journal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Local Storage/chrome-extension_mclkkofklkfljcocdinagocijmpgbhab_0.localstorage-journal -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Local Storage/chrome-extension_mjocghlclkpgheifflemilcnblodjohg_0.localstorage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Local Storage/chrome-extension_mjocghlclkpgheifflemilcnblodjohg_0.localstorage -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Local Storage/chrome-extension_mjocghlclkpgheifflemilcnblodjohg_0.localstorage-journal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Local Storage/chrome-extension_mjocghlclkpgheifflemilcnblodjohg_0.localstorage-journal -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Local Storage/https_chrome.google.com_0.localstorage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Local Storage/https_chrome.google.com_0.localstorage -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Local Storage/https_chrome.google.com_0.localstorage-journal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Local Storage/https_chrome.google.com_0.localstorage-journal -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Login Data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Login Data -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Login Data-journal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Login Data-journal -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Managed Mode Settings: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Network Action Predictor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Network Action Predictor -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Network Action Predictor-journal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Network Action Predictor-journal -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Network Persistent State: -------------------------------------------------------------------------------- 1 | {"SDCH":{"dictionaries":{},"version":2}} -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Origin Bound Certs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Origin Bound Certs -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Origin Bound Certs-journal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Origin Bound Certs-journal -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Platform Notifications/000003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Platform Notifications/000003.log -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Platform Notifications/CURRENT: -------------------------------------------------------------------------------- 1 | MANIFEST-000001 2 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Platform Notifications/LOCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Platform Notifications/LOCK -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Platform Notifications/LOG: -------------------------------------------------------------------------------- 1 | 2016/11/16-15:53:41.265 915 Reusing MANIFEST /home/pi/.config/chromium/Default/Platform Notifications/MANIFEST-000001 2 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Platform Notifications/MANIFEST-000001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Platform Notifications/MANIFEST-000001 -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/QuotaManager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/QuotaManager -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/QuotaManager-journal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/QuotaManager-journal -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/README: -------------------------------------------------------------------------------- 1 | Chromium settings and storage represent user-selected preferences and information and MUST not be extracted, overwritten or modified except through Chromium defined APIs. -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Secure Preferences: -------------------------------------------------------------------------------- 1 | {"protection":{"macs":{},"super_mac":"22F8EEA909400AF98ADF3681A9F31923EF6B7FCBA4ABB553D92823A3E9D5C25E"}} -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Service Worker/Database/000003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Service Worker/Database/000003.log -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Service Worker/Database/CURRENT: -------------------------------------------------------------------------------- 1 | MANIFEST-000001 2 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Service Worker/Database/LOCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Service Worker/Database/LOCK -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Service Worker/Database/LOG: -------------------------------------------------------------------------------- 1 | 2016/11/16-15:52:49.315 944 Reusing MANIFEST /home/pi/.config/chromium/Default/Service Worker/Database/MANIFEST-000001 2 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Service Worker/Database/MANIFEST-000001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Service Worker/Database/MANIFEST-000001 -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Service Worker/ScriptCache/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Service Worker/ScriptCache/index -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Service Worker/ScriptCache/index-dir/the-real-index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Service Worker/ScriptCache/index-dir/the-real-index -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Session Storage/000003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Session Storage/000003.log -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Session Storage/CURRENT: -------------------------------------------------------------------------------- 1 | MANIFEST-000001 2 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Session Storage/LOCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Session Storage/LOCK -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Session Storage/LOG: -------------------------------------------------------------------------------- 1 | 2016/11/16-15:52:54.648 914 Reusing MANIFEST /home/pi/.config/chromium/Default/Session Storage/MANIFEST-000001 2 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Session Storage/MANIFEST-000001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Session Storage/MANIFEST-000001 -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Shortcuts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Shortcuts -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Shortcuts-journal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Shortcuts-journal -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Thumbnails/000003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Thumbnails/000003.log -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Thumbnails/CURRENT: -------------------------------------------------------------------------------- 1 | MANIFEST-000001 2 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Thumbnails/LOCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Thumbnails/LOCK -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Thumbnails/LOG: -------------------------------------------------------------------------------- 1 | 2016/11/16-15:52:34.195 944 Reusing MANIFEST /home/pi/.config/chromium/Default/Thumbnails/MANIFEST-000001 2 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Thumbnails/MANIFEST-000001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Thumbnails/MANIFEST-000001 -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Top Sites: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Top Sites -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Top Sites-journal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Top Sites-journal -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/TransportSecurity: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/User StyleSheets/Custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/User StyleSheets/Custom.css -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Visited Links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Visited Links -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Web Data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Web Data -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/Web Data-journal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/Web Data-journal -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/data_reduction_proxy_leveldb/000003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/data_reduction_proxy_leveldb/000003.log -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/data_reduction_proxy_leveldb/CURRENT: -------------------------------------------------------------------------------- 1 | MANIFEST-000001 2 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/data_reduction_proxy_leveldb/LOCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/data_reduction_proxy_leveldb/LOCK -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/data_reduction_proxy_leveldb/LOG: -------------------------------------------------------------------------------- 1 | 2016/11/16-15:52:33.875 914 Reusing MANIFEST /home/pi/.config/chromium/Default/data_reduction_proxy_leveldb/MANIFEST-000001 2 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/data_reduction_proxy_leveldb/MANIFEST-000001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/data_reduction_proxy_leveldb/MANIFEST-000001 -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/databases/Databases.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/databases/Databases.db -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Default/databases/Databases.db-journal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Default/databases/Databases.db-journal -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Dictionaries/en-US-2-3.bdic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Dictionaries/en-US-2-3.bdic -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Dictionaries/en-US-7-1.bdic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Dictionaries/en-US-7-1.bdic -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/First Run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/First Run -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Safe Browsing Channel IDs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Safe Browsing Channel IDs -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Safe Browsing Channel IDs-journal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Safe Browsing Channel IDs-journal -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Safe Browsing Cookies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Safe Browsing Cookies -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Safe Browsing Cookies-journal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/Safe Browsing Cookies-journal -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/Service State: -------------------------------------------------------------------------------- 1 | { 2 | "intl": { 3 | "app_locale": "en-US" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/ShaderCache/GPUCache/data_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/ShaderCache/GPUCache/data_0 -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/ShaderCache/GPUCache/data_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/ShaderCache/GPUCache/data_1 -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/ShaderCache/GPUCache/data_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/ShaderCache/GPUCache/data_2 -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/ShaderCache/GPUCache/data_3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/ShaderCache/GPUCache/data_3 -------------------------------------------------------------------------------- /ansible/roles/raspbian/files/chromium-defaults/ShaderCache/GPUCache/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/raspbian/files/chromium-defaults/ShaderCache/GPUCache/index -------------------------------------------------------------------------------- /ansible/roles/raspbian/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # Any module can be used for the handler action 3 | - name: Restart display-manager 4 | become: yes 5 | become_user: root 6 | action: service name="{{ display_manager }}" state=restarted enabled=true 7 | 8 | # Any module can be used for the handler action 9 | - name: Reconfigure time zone 10 | become: yes 11 | become_user: root 12 | shell: dpkg-reconfigure -f noninteractive tzdata 13 | -------------------------------------------------------------------------------- /ansible/roles/raspbian/templates/timezone.txt: -------------------------------------------------------------------------------- 1 | {{ timezone }} -------------------------------------------------------------------------------- /ansible/roles/ubuntu-docker/tasks/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | - name: Ensure that Docker runs 3 | systemd: 4 | name: docker 5 | state: started 6 | enabled: yes 7 | become: yes 8 | 9 | -------------------------------------------------------------------------------- /ansible/roles/untitled.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/ansible/roles/untitled.txt -------------------------------------------------------------------------------- /bin/discover_topics: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env coffee 2 | mqtt = require 'mqtt' 3 | client = mqtt.connect 'mqtt://10.0.1.17' 4 | client.on 'connect', -> 5 | console.log 'connected' 6 | client.subscribe '#' 7 | 8 | seen = [] 9 | 10 | client.on 'message', (topic, msg) -> 11 | # Ignore if we've already see it 12 | return unless seen.indexOf(topic) is -1 13 | 14 | console.log "NEW TOPIC '#{topic}'" 15 | console.log " #{msg.toString()}" 16 | seen.push topic 17 | 18 | process.on 'SIGINT', -> 19 | console.log "\n\nALL TOPICS" 20 | for topic in seen 21 | console.log topic 22 | process.exit 0 23 | -------------------------------------------------------------------------------- /components/AlienAlarm.yml: -------------------------------------------------------------------------------- 1 | component: c-base/AlienAlarm 2 | icon: reddit-alien 3 | label: 'Alien Alarm in nerdarea' 4 | inports: 5 | led: 6 | queue: alien-alarm/led 7 | type: boolean 8 | outports: 9 | alarm: 10 | queue: alien-alarm/alarm 11 | type: boolean 12 | door: 13 | queue: alien-alarm/door 14 | type: boolean 15 | -------------------------------------------------------------------------------- /components/AlienAlarmOnScreen.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | import msgflo 4 | 5 | class AlienAlarmOnScreen(msgflo.Participant): 6 | def __init__(self, role): 7 | d = { 8 | 'component': 'c-flo/AlienAlarmOnScreen', 9 | 'label': 'Show visual Alien Alarm when needed', 10 | 'icon': 'bug', 11 | 'inports': [ 12 | { 'id': 'in', 'type': 'boolean' }, 13 | ], 14 | 'outports': [ 15 | { 'id': 'out', 'type': 'string' }, 16 | ], 17 | } 18 | msgflo.Participant.__init__(self, d, role) 19 | 20 | def process(self, inport, msg): 21 | if msg.data: 22 | print("Alien Alarm!") 23 | self.send('out', 'http://c-flo.cbrp3.c-base.org/alien-alarm/') 24 | else: 25 | print("Alarm over") 26 | self.ack(msg) 27 | 28 | if __name__ == '__main__': 29 | msgflo.main(AlienAlarmOnScreen) 30 | -------------------------------------------------------------------------------- /components/BarAnnouncer.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | import msgflo 4 | 5 | class BarAnnouncer(msgflo.Participant): 6 | def __init__(self, role): 7 | d = { 8 | 'component': 'c-flo/BarAnnouncer', 9 | 'label': 'Generate an announcement when bar opens or closes', 10 | 'icon': 'commenting', 11 | 'inports': [ 12 | { 'id': 'in', 'type': 'string' }, 13 | ], 14 | 'outports': [ 15 | { 'id': 'out', 'type': 'string' }, 16 | ], 17 | } 18 | msgflo.Participant.__init__(self, d, role) 19 | 20 | def process(self, inport, msg): 21 | if msg.data.find('bar opening') != -1: 22 | self.send('out', 'Bar is opening') 23 | if msg.data.find('bar closing') != -1: 24 | self.send('out', 'Bar is closing') 25 | self.ack(msg) 26 | 27 | if __name__ == '__main__': 28 | msgflo.main(BarAnnouncer) 29 | -------------------------------------------------------------------------------- /components/BigSwitch.yml: -------------------------------------------------------------------------------- 1 | component: c-base/BigSwitch 2 | label: 'IP-Lounge big switch' 3 | icon: bomb 4 | inports: 5 | led: 6 | type: boolean 7 | queue: button/bigswitch/led 8 | colors: 9 | type: object 10 | queue: button/bigswitch/colors 11 | outports: 12 | state: 13 | type: boolean 14 | queue: button/bigswitch/on 15 | -------------------------------------------------------------------------------- /components/DetectABBA.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | import gevent 3 | import msgflo 4 | 5 | class DetectABBA(msgflo.Participant): 6 | def __init__(self, role): 7 | d = { 8 | 'component': 'c-flo/DetectABBA', 9 | 'label': 'Detect if ABBA', 10 | 'icon': 'star-o', 11 | 'inports': [ 12 | { 'id': 'song', 'type': 'object' }, 13 | ], 14 | 'outports': [ 15 | { 'id': 'out', 'type': 'boolean' }, 16 | ], 17 | } 18 | msgflo.Participant.__init__(self, d, role) 19 | 20 | def process(self, inport, msg): 21 | current_song = msg.data 22 | artist = current_song.get('artist', '') 23 | if artist.lower() == 'abba': 24 | self.send('out', True) 25 | else: 26 | self.send('out', False) 27 | self.ack(msg) 28 | 29 | if __name__ == '__main__': 30 | msgflo.main(DetectABBA) 31 | -------------------------------------------------------------------------------- /components/FeinstaubSensor.yml: -------------------------------------------------------------------------------- 1 | component: FeinstaubSensor 2 | label: '' 3 | icon: '' 4 | inports: 5 | sampleinterval: 6 | queue: '#ROLE/sampleinterval' 7 | type: any 8 | sendinterval: 9 | queue: '#ROLE/sendinterval' 10 | type: any 11 | outports: 12 | temperature: 13 | queue: '#ROLE/temperature' 14 | type: any 15 | humidity: 16 | queue: '#ROLE/humidity' 17 | type: any 18 | pm25: 19 | queue: '#ROLE/pm25' 20 | type: any 21 | pm10: 22 | queue: '#ROLE/pm10' 23 | type: any 24 | -------------------------------------------------------------------------------- /components/HighPower.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | import msgflo 4 | 5 | class HighPower(msgflo.Participant): 6 | def __init__(self, role): 7 | d = { 8 | 'component': 'c-flo/HighPower', 9 | 'label': 'Announce when c-base is using a lot of power', 10 | 'icon': 'check', 11 | 'inports': [ 12 | { 'id': 'in', 'type': 'int' }, 13 | ], 14 | 'outports': [ 15 | { 'id': 'out', 'type': 'string' }, 16 | ], 17 | } 18 | msgflo.Participant.__init__(self, d, role) 19 | 20 | def process(self, inport, msg): 21 | if (msg.data < 9000): 22 | self.ack(msg) 23 | return 24 | announcement = 'Power consumption over 9000' 25 | self.send('out', announcement) 26 | self.ack(msg) 27 | 28 | if __name__ == '__main__': 29 | msgflo.main(HighPower) 30 | -------------------------------------------------------------------------------- /components/PioneerPlaque.yml: -------------------------------------------------------------------------------- 1 | component: c-base/PioneerPlaque 2 | label: 'c-base Pioneer Plaque' 3 | icon: lightbulb-o 4 | inports: 5 | led: 6 | type: boolean 7 | queue: case/pioneer/led 8 | colors: 9 | type: object 10 | queue: case/pioneer/colors 11 | outports: {} 12 | -------------------------------------------------------------------------------- /components/StationAnnouncer.yml: -------------------------------------------------------------------------------- 1 | component: station-announcer/StationAnnouncer 2 | label: Generate random station announcements at given propability 3 | icon: space-shuttle 4 | inports: 5 | announce: 6 | type: all 7 | queue: station-announcer.ANNOUNCE 8 | probability: 9 | type: all 10 | queue: station-announcer.PROBABILITY 11 | in: 12 | type: all 13 | queue: station-announcer.IN 14 | outports: 15 | out: 16 | type: all 17 | queue: station-announcer.OUT 18 | skipped: 19 | type: all 20 | queue: station-announcer.SKIPPED 21 | -------------------------------------------------------------------------------- /components/Vacuum.yml: -------------------------------------------------------------------------------- 1 | component: c-flo/Vacuum 2 | label: station vacuum cleaner 3 | icon: trash-o 4 | inports: {} 5 | outports: 6 | on: 7 | queue: c-base/vacuum/on 8 | type: boolean 9 | -------------------------------------------------------------------------------- /components/VisualPaging.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | import msgflo 4 | import urllib.parse 5 | 6 | class VisualPaging(msgflo.Participant): 7 | def __init__(self, role): 8 | d = { 9 | 'component': 'c-flo/VisualPaging', 10 | 'label': 'Generate a visual paging URL for textual messages', 11 | 'icon': 'font', 12 | 'inports': [ 13 | { 'id': 'in', 'type': 'string' }, 14 | ], 15 | 'outports': [ 16 | { 'id': 'out', 'type': 'string' }, 17 | ], 18 | } 19 | msgflo.Participant.__init__(self, d, role) 20 | 21 | def process(self, inport, msg): 22 | url = 'http://c-flo.cbrp3.c-base.org/visual-paging/?%s' % urllib.parse.quote(msg.data.encode('utf-8')) 23 | self.send('out', url) 24 | self.ack(msg) 25 | 26 | if __name__ == '__main__': 27 | msgflo.main(VisualPaging) 28 | -------------------------------------------------------------------------------- /components/barstatus.yml: -------------------------------------------------------------------------------- 1 | component: c-flo/barstatus 2 | label: c-base bar status switch 3 | icon: beer 4 | inports: {} 5 | outports: 6 | state: 7 | description: "open or closed" 8 | queue: bar/state 9 | type: string 10 | stateful: 11 | description: "opening, opened, etc" 12 | queue: bar/stateful 13 | type: string 14 | status: 15 | queue: bar/status 16 | type: string 17 | -------------------------------------------------------------------------------- /components/buttonpanel.yml: -------------------------------------------------------------------------------- 1 | component: c-base/buttonpanel 2 | label: 'Ignition button' 3 | icon: toggle-on 4 | inports: 5 | led: 6 | type: boolean 7 | queue: c-boom/led 8 | vibra: 9 | type: boolean 10 | queue: c-boom/vibra 11 | outports: 12 | ignition: 13 | type: boolean 14 | queue: c-boom/ignition 15 | start: 16 | type: boolean 17 | queue: c-boom/start 18 | -------------------------------------------------------------------------------- /components/c-beam-viewer.yml: -------------------------------------------------------------------------------- 1 | component: c-base/c-beam-viewer 2 | label: Show URL on a public screen. 3 | icon: tablet 4 | inports: 5 | open: 6 | description: URL to be opened 7 | type: string 8 | queue: '#ROLE/open' 9 | outports: 10 | opened: 11 | description: The URL that has been opened and is showing. 12 | type: string 13 | queue: '#ROLE/opened' 14 | -------------------------------------------------------------------------------- /components/c_out.yml: -------------------------------------------------------------------------------- 1 | component: c-flo/c_out 2 | source: 'https://github.com/c-base/c_out' 3 | label: Generate sounds 4 | icon: comment 5 | inports: {} 6 | outports: 7 | playsound: 8 | queue: c_out/play 9 | type: string 10 | playrandomsound: 11 | queue: c_out/loop 12 | type: bang 13 | saytext: 14 | queue: c_out/announce 15 | type: string 16 | saytext_en: 17 | queue: c_out/announce_en 18 | type: string 19 | -------------------------------------------------------------------------------- /components/crew.yml: -------------------------------------------------------------------------------- 1 | component: c-flo/crew 2 | label: station crew register 3 | icon: users 4 | inports: {} 5 | outports: 6 | boarding: 7 | queue: user/boarding 8 | type: object 9 | leaving: 10 | queue: user/leaving 11 | type: object 12 | crew: 13 | queue: c-base/crew 14 | type: object 15 | members: 16 | queue: c-base/crew/members 17 | type: int 18 | passive: 19 | queue: c-base/crew/passive 20 | type: int 21 | updated: 22 | queue: c-base/crew/last_update 23 | type: string 24 | -------------------------------------------------------------------------------- /components/dmx.yml: -------------------------------------------------------------------------------- 1 | component: c-base/dmx 2 | label: station light control 3 | icon: lightbulb-o 4 | inports: 5 | set_channels: 6 | type: object 7 | description: set the current light state 8 | queue: dmx-mainhall/state 9 | outports: 10 | fixtures: 11 | type: object 12 | description: light fixtures 13 | queue: dmx-mainhall/fixtures 14 | channels: 15 | type: object 16 | description: the current channel state 17 | queue: dmx-mainhall/current_state 18 | automode: 19 | type: boolean 20 | description: is the automatic mode enabled 21 | queue: dmx-mainhall/automode 22 | -------------------------------------------------------------------------------- /components/echelon.yml: -------------------------------------------------------------------------------- 1 | component: c-flo/echelon 2 | label: station network traffic monitoring 3 | icon: wifi 4 | inports: {} 5 | outports: 6 | traffic: 7 | queue: system/echelon/traffic 8 | type: object 9 | -------------------------------------------------------------------------------- /components/infodisplay.yml: -------------------------------------------------------------------------------- 1 | component: c-base/infodisplay 2 | label: Show URL on a public screen. 3 | icon: television 4 | inports: 5 | open: 6 | description: URL to be opened 7 | type: string 8 | queue: '#ROLE.OPEN' 9 | urls: 10 | description: URL list for rotation 11 | type: array 12 | queue: '#ROLE.URLS' 13 | outports: 14 | opened: 15 | description: The URL that has been opened and is showing. 16 | type: string 17 | queue: '#ROLE.OPENED' 18 | -------------------------------------------------------------------------------- /components/ingress-data.yml: -------------------------------------------------------------------------------- 1 | component: ingress-table/data 2 | label: Ingress data fetching for the Ingress Table 3 | icon: fire 4 | inports: 5 | fetch: 6 | queue: '#ROLE.FETCH' 7 | type: bang 8 | poll: 9 | queue: '#ROLE.POLL' 10 | type: number 11 | outports: 12 | light: 13 | queue: '#ROLE.LIGHT' 14 | type: array 15 | streets: 16 | queue: '#ROLE.STREETS' 17 | type: any 18 | floor: 19 | queue: '#ROLE.FLOOR' 20 | type: array 21 | -------------------------------------------------------------------------------- /components/ingress-lights.yml: -------------------------------------------------------------------------------- 1 | component: ingress-table/lights 2 | icon: lightbulb-o 3 | label: 'Drive the lights on the table' 4 | inports: 5 | streets: 6 | queue: '#ROLE.STREETS' 7 | type: array 8 | floor: 9 | queue: '#ROLE.FLOOR' 10 | type: array 11 | light: 12 | queue: '#ROLE.LIGHT' 13 | type: array 14 | animate: 15 | queue: '#ROLE.ANIMATE' 16 | type: any 17 | outports: 18 | shown: 19 | queue: '#ROLE.SHOWN' 20 | type: any 21 | -------------------------------------------------------------------------------- /components/ingress-portal.yml: -------------------------------------------------------------------------------- 1 | component: c-flo/ingress-portal 2 | source: 'https://github.com/c-base/ingress-table' 3 | label: Portal status via Ingress Table 4 | icon: fire 5 | inports: {} 6 | outports: 7 | status: 8 | description: 'current status of a portal' 9 | queue: 'ingress/status/#ROLE' 10 | datatype: object 11 | -------------------------------------------------------------------------------- /components/mqttwebview.yml: -------------------------------------------------------------------------------- 1 | component: c-base/mqttwebview 2 | label: Show URL on a public screen. 3 | icon: television 4 | inports: 5 | open: 6 | description: URL to be opened 7 | type: string 8 | queue: '#ROLE/open' 9 | outports: 10 | opened: 11 | description: The URL that has been opened and is showing. 12 | type: string 13 | queue: '#ROLE/opened' 14 | -------------------------------------------------------------------------------- /components/music-player.yml: -------------------------------------------------------------------------------- 1 | component: c-base/music-player 2 | label: c-base music player 3 | icon: music 4 | inports: {} 5 | outports: 6 | current_song: 7 | type: object 8 | description: JSON object of the current song being played. 9 | queue: '#ROLE/current_song' 10 | -------------------------------------------------------------------------------- /components/nerdctrl.yml: -------------------------------------------------------------------------------- 1 | component: c-flo/nerdctrl 2 | label: c-base nerd control interface 3 | icon: gamepad 4 | inports: {} 5 | outports: 6 | openurl: 7 | queue: nerdctrl/open 8 | type: string 9 | -------------------------------------------------------------------------------- /components/panel.yml: -------------------------------------------------------------------------------- 1 | component: c-flo/panel 2 | label: Color LED panel 3 | icon: lightbulb-o 4 | inports: 5 | palette: 6 | queue: 'panel/#ROLE' 7 | type: object 8 | description: Farbgeber-style palette to display 9 | outports: {} 10 | -------------------------------------------------------------------------------- /components/pedestrianlight.yml: -------------------------------------------------------------------------------- 1 | component: c-flo/pedestrianlight 2 | label: pedestrian traffic light 3 | icon: lightbulb-o 4 | inports: 5 | colors: 6 | queue: 'ampel/#ROLE' 7 | type: object 8 | outports: {} 9 | -------------------------------------------------------------------------------- /components/playsound.yml: -------------------------------------------------------------------------------- 1 | component: c-flo/playsound 2 | label: Play sounds 3 | icon: volume-up 4 | inports: 5 | playsound: 6 | queue: c_out/play 7 | type: string 8 | playrandomsound: 9 | queue: c_out/loop 10 | type: bang 11 | saytext: 12 | queue: c_out/announce 13 | type: string 14 | saytext_en: 15 | queue: c_out/announce_en 16 | type: string 17 | outports: {} 18 | -------------------------------------------------------------------------------- /components/powermon.yml: -------------------------------------------------------------------------------- 1 | component: c-flo/powermon 2 | label: station power usage monitoring 3 | icon: bolt 4 | inports: {} 5 | outports: 6 | out: 7 | queue: system/powermon 8 | type: object 9 | load: 10 | queue: system/powermon/load 11 | type: int 12 | counter: 13 | queue: system/powermon/counter 14 | type: number 15 | updated: 16 | queue: system/powermon/last_update 17 | type: string 18 | -------------------------------------------------------------------------------- /components/statuslight.yml: -------------------------------------------------------------------------------- 1 | component: c-flo/statuslight 2 | label: bar status light indicating openness 3 | icon: map-signs 4 | inports: 5 | barstatus: 6 | queue: bar/stateful 7 | type: string 8 | outports: {} 9 | -------------------------------------------------------------------------------- /components/time.yml: -------------------------------------------------------------------------------- 1 | component: c-flo/time 2 | label: c-base station time 3 | icon: clock-o 4 | inports: {} 5 | outports: 6 | time: 7 | queue: info/time 8 | type: string 9 | -------------------------------------------------------------------------------- /devices/BigSwitch/.gitignore: -------------------------------------------------------------------------------- 1 | config.h 2 | -------------------------------------------------------------------------------- /devices/BigSwitch/config.h.sample: -------------------------------------------------------------------------------- 1 | // rename this file to config.h and enter the correct WiFi password below. 2 | #ifndef WIFI_SSID 3 | #define WIFI_SSID "c-base-botnet" 4 | #endif 5 | 6 | #ifndef WIFI_PASSWORD 7 | #define WIFI_PASSWORD "xxxxxxxxxx" 8 | #endif 9 | -------------------------------------------------------------------------------- /devices/PioneerPlaque/README.md: -------------------------------------------------------------------------------- 1 | The frame is hotclued from its corners to the base plate(should be easy enough to remove for potential maintenance). The base plate is drilled to the wall with 4 screws. 2 | -------------------------------------------------------------------------------- /devices/PioneerPlaque/config.h.sample: -------------------------------------------------------------------------------- 1 | // rename this file to config.h and enter the correct WiFi password below. 2 | #ifndef WIFI_SSID 3 | #define WIFI_SSID "c-base-botnet" 4 | #endif 5 | 6 | #ifndef WIFI_PASSWORD 7 | #define WIFI_PASSWORD "xxxxxxxxxx" 8 | #endif 9 | -------------------------------------------------------------------------------- /devices/alien-alarm/.gitignore: -------------------------------------------------------------------------------- 1 | config.h 2 | -------------------------------------------------------------------------------- /devices/alien-alarm/config.h.sample: -------------------------------------------------------------------------------- 1 | // rename this file to config.h and enter the correct WiFi password below. 2 | #ifndef WIFI_SSID 3 | #define WIFI_SSID "c-base-botnet" 4 | #endif 5 | 6 | #ifndef WIFI_PASSWORD 7 | #define WIFI_PASSWORD "xxxxxxxxxx" 8 | #endif 9 | -------------------------------------------------------------------------------- /devices/alien-sign/Arduino/McLighting/data/edit.htm.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/devices/alien-sign/Arduino/McLighting/data/edit.htm.gz -------------------------------------------------------------------------------- /devices/alien-sign/Arduino/McLighting/data/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/devices/alien-sign/Arduino/McLighting/data/favicon.ico -------------------------------------------------------------------------------- /devices/alien-sign/Arduino/McLighting/data/graphs.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/devices/alien-sign/Arduino/McLighting/data/graphs.js.gz -------------------------------------------------------------------------------- /devices/alien-sign/Arduino/McLighting/version.h: -------------------------------------------------------------------------------- 1 | #define SKETCH_VERSION "2.1.7" 2 | -------------------------------------------------------------------------------- /devices/alien-sign/clients/Android/McLightningApp.aia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/devices/alien-sign/clients/Android/McLightningApp.aia -------------------------------------------------------------------------------- /devices/alien-sign/clients/Android/McLightningApp.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/devices/alien-sign/clients/Android/McLightningApp.apk -------------------------------------------------------------------------------- /devices/alien-sign/clients/pebble/McLighting.pbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/devices/alien-sign/clients/pebble/McLighting.pbw -------------------------------------------------------------------------------- /devices/alien-sign/clients/pebble/configuration_page/.firebaserc: -------------------------------------------------------------------------------- 1 | { 2 | "projects": { 3 | "default": "mclighting-pebble-config" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /devices/alien-sign/clients/pebble/configuration_page/database.rules.json: -------------------------------------------------------------------------------- 1 | { 2 | ".read": true, 3 | ".write": true 4 | } 5 | -------------------------------------------------------------------------------- /devices/alien-sign/clients/pebble/configuration_page/firebase.json: -------------------------------------------------------------------------------- 1 | { 2 | "database": { 3 | "rules": "database.rules.json" 4 | }, 5 | "hosting": { 6 | "public": "public" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /devices/alien-sign/clients/pebble/configuration_page/public/fonts/pfdindisplaypro-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/devices/alien-sign/clients/pebble/configuration_page/public/fonts/pfdindisplaypro-regular.woff -------------------------------------------------------------------------------- /devices/alien-sign/clients/pebble/configuration_page/public/fonts/ptsans-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/devices/alien-sign/clients/pebble/configuration_page/public/fonts/ptsans-regular.woff -------------------------------------------------------------------------------- /devices/alien-sign/clients/web/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "mc_lighting", 3 | "version": "2.0.0", 4 | "description": "Web client for Mc Lighting", 5 | "main": "index.html", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "author": "Tobias Blum", 10 | "license": "MIT", 11 | "dependencies": { 12 | "fs": "0.0.2", 13 | "gulp": "^3.9.1", 14 | "gulp-connect": "^5.0.0", 15 | "gulp-file-include": "^1.0.0", 16 | "request": "^2.72.0" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /devices/alien-sign/documentation/fritzing/McLighting-NodeMCU_Board.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/devices/alien-sign/documentation/fritzing/McLighting-NodeMCU_Board.fzz -------------------------------------------------------------------------------- /devices/alien-sign/documentation/fritzing/McLighting-NodeMCU_Board_Levelshifter.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/devices/alien-sign/documentation/fritzing/McLighting-NodeMCU_Board_Levelshifter.fzz -------------------------------------------------------------------------------- /devices/alien-sign/documentation/pcb/Gerber.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/devices/alien-sign/documentation/pcb/Gerber.zip -------------------------------------------------------------------------------- /devices/alien-sign/documentation/pcb/PCB_Schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/devices/alien-sign/documentation/pcb/PCB_Schematic.pdf -------------------------------------------------------------------------------- /devices/alien-sign/documentation/pics/McLighting-NodeMCU_Board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/devices/alien-sign/documentation/pics/McLighting-NodeMCU_Board.png -------------------------------------------------------------------------------- /devices/alien-sign/documentation/pics/McLighting-NodeMCU_Board_Levelshifter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/devices/alien-sign/documentation/pics/McLighting-NodeMCU_Board_Levelshifter.png -------------------------------------------------------------------------------- /devices/alien-sign/documentation/pics/arduino_boards_manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/devices/alien-sign/documentation/pics/arduino_boards_manager.png -------------------------------------------------------------------------------- /devices/alien-sign/documentation/pics/arduino_preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/devices/alien-sign/documentation/pics/arduino_preferences.png -------------------------------------------------------------------------------- /devices/alien-sign/documentation/pics/board_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/devices/alien-sign/documentation/pics/board_settings.png -------------------------------------------------------------------------------- /devices/alien-sign/documentation/pics/captive_mqtt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/devices/alien-sign/documentation/pics/captive_mqtt.png -------------------------------------------------------------------------------- /devices/alien-sign/documentation/slides/Ein SmartLight im Selbstbau für unter 15 €_Pi and More 9.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-base/c-flo/193cfa78a391462e5840cde7e413cba5eba6418c/devices/alien-sign/documentation/slides/Ein SmartLight im Selbstbau für unter 15 €_Pi and More 9.pdf -------------------------------------------------------------------------------- /devices/bar-status/.gitignore: -------------------------------------------------------------------------------- 1 | config.h 2 | -------------------------------------------------------------------------------- /devices/bar-status/config.h.sample: -------------------------------------------------------------------------------- 1 | // rename this file to config.h and enter the correct WiFi password below. 2 | #ifndef WIFI_SSID 3 | #define WIFI_SSID "c-base-botnet" 4 | #endif 5 | 6 | #ifndef WIFI_PASSWORD 7 | #define WIFI_PASSWORD "xxxxxxxxxx" 8 | #endif 9 | -------------------------------------------------------------------------------- /devices/crash-button/.gitignore: -------------------------------------------------------------------------------- 1 | config.h 2 | -------------------------------------------------------------------------------- /devices/crash-button/config.h.sample: -------------------------------------------------------------------------------- 1 | // rename this file to config.h and enter the correct WiFi password below. 2 | #ifndef WIFI_SSID 3 | #define WIFI_SSID "c-base-botnet" 4 | #endif 5 | 6 | #ifndef WIFI_PASSWORD 7 | #define WIFI_PASSWORD "xxxxxxxxxx" 8 | #endif 9 | -------------------------------------------------------------------------------- /devices/drinks-status/.gitignore: -------------------------------------------------------------------------------- 1 | config.h 2 | -------------------------------------------------------------------------------- /devices/drinks-status/config.h.sample: -------------------------------------------------------------------------------- 1 | // rename this file to config.h and enter the correct WiFi password below. 2 | #ifndef WIFI_SSID 3 | #define WIFI_SSID "c-base-botnet" 4 | #endif 5 | 6 | #ifndef WIFI_PASSWORD 7 | #define WIFI_PASSWORD "xxxxxxxxxx" 8 | #endif 9 | -------------------------------------------------------------------------------- /devices/weltenbausensor/.gitignore: -------------------------------------------------------------------------------- 1 | config.h 2 | -------------------------------------------------------------------------------- /devices/weltenbausensor/config.h.sample: -------------------------------------------------------------------------------- 1 | // rename this file to config.h and enter the correct WiFi password below. 2 | #ifndef WIFI_SSID 3 | #define WIFI_SSID "c-base-botnet" 4 | #endif 5 | 6 | #ifndef WIFI_PASSWORD 7 | #define WIFI_PASSWORD "xxxxxxxxxx" 8 | #endif 9 | -------------------------------------------------------------------------------- /devices/werkstattonair/.gitignore: -------------------------------------------------------------------------------- 1 | config.h 2 | -------------------------------------------------------------------------------- /devices/werkstattonair/config.h.sample: -------------------------------------------------------------------------------- 1 | // rename this file to config.h and enter the correct WiFi password below. 2 | #ifndef WIFI_SSID 3 | #define WIFI_SSID "c-base-botnet" 4 | #endif 5 | 6 | #ifndef WIFI_PASSWORD 7 | #define WIFI_PASSWORD "xxxxxxxxxx" 8 | #endif 9 | -------------------------------------------------------------------------------- /devices/wifi-quality/config.h.sample: -------------------------------------------------------------------------------- 1 | // rename this file to config.h and enter the correct WiFi password below. 2 | #ifndef WIFI_SSID 3 | #define WIFI_SSID "c-base-botnet" 4 | #endif 5 | 6 | #ifndef WIFI_PASSWORD 7 | #define WIFI_PASSWORD "xxxxxxxxxx" 8 | #endif 9 | -------------------------------------------------------------------------------- /requirements.pip: -------------------------------------------------------------------------------- 1 | msgflo>=0.4.1 2 | gevent==1.2.2 3 | colour==0.1.4 4 | icalendar>=3.11.4 5 | python-dateutil>=2.6.1 6 | pytz>=2017.3 7 | Pillow>=4.1.1 8 | beautifulsoup4>=4.6.0 9 | qhue>=1.0.9 10 | rgbxy>=0.5 11 | requests>=2.18.4 12 | -------------------------------------------------------------------------------- /spec/AirportWeather.yaml: -------------------------------------------------------------------------------- 1 | name: 'Fetching airport weather' 2 | topic: c-flo/AirportWeather 3 | fixture: 4 | type: 'fbp' 5 | data: | 6 | INPORT=airportweather.ICAO:ICAO 7 | INPORT=airportweather.FETCH:FETCH 8 | OUTPORT=airportweather.TEMPERATURE:TEMPERATURE 9 | OUTPORT=airportweather.HUMIDITY:HUMIDITY 10 | airportweather(c-flo/AirportWeather) 11 | cases: 12 | - 13 | name: 'fetching TXL weather' 14 | assertion: 'should return temperature and humidity' 15 | inputs: 16 | icao: 'EDDT' 17 | fetch: true 18 | expect: 19 | temperature: 20 | type: 'number' 21 | humidity: 22 | type: 'number' 23 | -------------------------------------------------------------------------------- /spec/BarAnnouncer.yaml: -------------------------------------------------------------------------------- 1 | name: 'Announcing bar opening/closing' 2 | topic: c-flo/BarAnnouncer 3 | fixture: 4 | type: 'fbp' 5 | data: | 6 | INPORT=barannouncer.IN:IN 7 | OUTPORT=barannouncer.OUT:OUT 8 | barannouncer(c-flo/BarAnnouncer) 9 | cases: 10 | - 11 | name: 'bar opening' 12 | assertion: 'should produce announcement' 13 | inputs: 14 | in: '19:37 bar opening' 15 | expect: 16 | out: 17 | - 18 | equals: 'Bar is opening' 19 | -------------------------------------------------------------------------------- /spec/DetectABBA.yaml: -------------------------------------------------------------------------------- 1 | name: 'Detecting ABBA' 2 | topic: c-flo/DetectABBA 3 | fixture: 4 | type: 'fbp' 5 | data: | 6 | INPORT=detect.SONG:IN 7 | OUTPORT=detect.OUT:OUT 8 | detect(c-flo/DetectABBA) 9 | cases: 10 | - 11 | name: 'currently playing AC/DC' 12 | assertion: 'should return false' 13 | inputs: 14 | in: 15 | artist: 'AC/DC' 16 | expect: 17 | out: 18 | - 19 | equals: false 20 | - 21 | name: 'currently playing ABBA' 22 | assertion: 'should return true' 23 | inputs: 24 | in: 25 | artist: 'ABBA' 26 | expect: 27 | out: 28 | - 29 | equals: true 30 | -------------------------------------------------------------------------------- /spec/DetectCircle.yaml: -------------------------------------------------------------------------------- 1 | name: 'Detecting Circle meeting' 2 | topic: c-flo/DetectCircle 3 | fixture: 4 | type: 'fbp' 5 | data: | 6 | INPORT=calendar.IN:FETCH 7 | OUTPORT=circle.CIRCLE:CIRCLE 8 | calendar(c-flo/EventCalendar) CURRENT -> CURRENT circle(c-flo/DetectCircle) 9 | cases: 10 | - 11 | name: 'when fetching calendar' 12 | assertion: 'should tell if there is an ongoing circle meeting' 13 | inputs: 14 | fetch: true 15 | expect: 16 | circle: 17 | - 18 | type: 'boolean' 19 | -------------------------------------------------------------------------------- /spec/boardingurl.yaml: -------------------------------------------------------------------------------- 1 | name: 'Producing a boarding URL' 2 | topic: c-flo/boardingurl 3 | fixture: 4 | type: 'fbp' 5 | data: | 6 | INPORT=url.IN:IN 7 | OUTPORT=url.OUT:OUT 8 | url(c-flo/boardingurl) 9 | cases: 10 | - 11 | name: 'when bergie is boarding' 12 | assertion: 'should return a welcoming message URL' 13 | inputs: 14 | in: 15 | user: 'bergie' 16 | expect: 17 | out: 18 | - 19 | equals: 'http://c-flo.cbrp3.c-base.org/visual-paging/?hallo%20bergie%2C%20willkommen%20an%20bord%21' 20 | -------------------------------------------------------------------------------- /systemd/c-flo-foreign.service: -------------------------------------------------------------------------------- 1 | [Service] 2 | WorkingDirectory=/opt/c-flo 3 | ExecStart=/usr/bin/npm run foreign 4 | Restart=always 5 | User=bergie 6 | Environment=PATH=/opt/c-flo/node_modules/.bin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/home/bergie/.local/bin MSGFLO_BROKER=mqtt://10.0.1.17 7 | 8 | [Unit] 9 | After=network-online.target 10 | 11 | [Install] 12 | WantedBy=multi-user.target 13 | -------------------------------------------------------------------------------- /systemd/c-flo.service: -------------------------------------------------------------------------------- 1 | [Service] 2 | WorkingDirectory=/opt/c-flo 3 | ExecStart=/usr/bin/npm start 4 | Restart=always 5 | User=bergie 6 | Environment=PATH=/opt/c-flo/node_modules/.bin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/home/bergie/.local/bin MSGFLO_BROKER=mqtt://10.0.1.17 7 | 8 | [Unit] 9 | After=network-online.target 10 | 11 | [Install] 12 | WantedBy=multi-user.target 13 | --------------------------------------------------------------------------------