├── .editorconfig ├── .eslintrc.json ├── .gitignore ├── .jshintrc ├── .travis.yml ├── .tx └── config ├── HACKING.md ├── LICENSE ├── Makefile ├── README.md ├── client.js ├── data └── settings.gschema.xml ├── extension.js ├── make-zip.sh ├── meson.build ├── metadata.json.in ├── package.json ├── po ├── LINGUAS ├── POTFILES.in ├── ca.po ├── cs.po ├── de.po ├── es.po ├── fr.po ├── it.po ├── meson.build ├── nl.po ├── pl.po ├── pt.po ├── pt_BR.po ├── pt_PT.po └── zh_CN.po ├── prefs.js ├── screenshots ├── gamemode-off.png ├── gamemode-on.png └── gamemode.png ├── scripts ├── fix_translations.py └── post-install.sh └── test-client.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gicmo/gamemode-extension/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gicmo/gamemode-extension/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gicmo/gamemode-extension/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gicmo/gamemode-extension/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gicmo/gamemode-extension/HEAD/.travis.yml -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gicmo/gamemode-extension/HEAD/.tx/config -------------------------------------------------------------------------------- /HACKING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gicmo/gamemode-extension/HEAD/HACKING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gicmo/gamemode-extension/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gicmo/gamemode-extension/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gicmo/gamemode-extension/HEAD/README.md -------------------------------------------------------------------------------- /client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gicmo/gamemode-extension/HEAD/client.js -------------------------------------------------------------------------------- /data/settings.gschema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gicmo/gamemode-extension/HEAD/data/settings.gschema.xml -------------------------------------------------------------------------------- /extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gicmo/gamemode-extension/HEAD/extension.js -------------------------------------------------------------------------------- /make-zip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gicmo/gamemode-extension/HEAD/make-zip.sh -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gicmo/gamemode-extension/HEAD/meson.build -------------------------------------------------------------------------------- /metadata.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gicmo/gamemode-extension/HEAD/metadata.json.in -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gicmo/gamemode-extension/HEAD/package.json -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gicmo/gamemode-extension/HEAD/po/LINGUAS -------------------------------------------------------------------------------- /po/POTFILES.in: -------------------------------------------------------------------------------- 1 | extension.js 2 | data/settings.gschema.xml 3 | -------------------------------------------------------------------------------- /po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gicmo/gamemode-extension/HEAD/po/ca.po -------------------------------------------------------------------------------- /po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gicmo/gamemode-extension/HEAD/po/cs.po -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gicmo/gamemode-extension/HEAD/po/de.po -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gicmo/gamemode-extension/HEAD/po/es.po -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gicmo/gamemode-extension/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gicmo/gamemode-extension/HEAD/po/it.po -------------------------------------------------------------------------------- /po/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gicmo/gamemode-extension/HEAD/po/meson.build -------------------------------------------------------------------------------- /po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gicmo/gamemode-extension/HEAD/po/nl.po -------------------------------------------------------------------------------- /po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gicmo/gamemode-extension/HEAD/po/pl.po -------------------------------------------------------------------------------- /po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gicmo/gamemode-extension/HEAD/po/pt.po -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gicmo/gamemode-extension/HEAD/po/pt_BR.po -------------------------------------------------------------------------------- /po/pt_PT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gicmo/gamemode-extension/HEAD/po/pt_PT.po -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gicmo/gamemode-extension/HEAD/po/zh_CN.po -------------------------------------------------------------------------------- /prefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gicmo/gamemode-extension/HEAD/prefs.js -------------------------------------------------------------------------------- /screenshots/gamemode-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gicmo/gamemode-extension/HEAD/screenshots/gamemode-off.png -------------------------------------------------------------------------------- /screenshots/gamemode-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gicmo/gamemode-extension/HEAD/screenshots/gamemode-on.png -------------------------------------------------------------------------------- /screenshots/gamemode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gicmo/gamemode-extension/HEAD/screenshots/gamemode.png -------------------------------------------------------------------------------- /scripts/fix_translations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gicmo/gamemode-extension/HEAD/scripts/fix_translations.py -------------------------------------------------------------------------------- /scripts/post-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gicmo/gamemode-extension/HEAD/scripts/post-install.sh -------------------------------------------------------------------------------- /test-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gicmo/gamemode-extension/HEAD/test-client.js --------------------------------------------------------------------------------