├── .gitignore ├── LICENSE ├── README.md ├── background.js ├── cookies.js ├── data └── icons │ ├── debug_16_active.png │ ├── debug_16_inactive.png │ ├── debug_32_active.png │ ├── debug_32_inactive.png │ ├── debug_48_active.png │ ├── debug_48_inactive.png │ ├── debug_64_active.png │ ├── debug_64_inactive.png │ ├── profile_16_active.png │ ├── profile_16_inactive.png │ ├── profile_24_inactive.png │ ├── profile_32_active.png │ ├── profile_32_inactive.png │ ├── profile_48_active.png │ ├── profile_48_inactive.png │ ├── profile_64_active.png │ ├── profile_64_inactive.png │ ├── settings.png │ ├── sources │ ├── debug0.png │ ├── debug1.png │ ├── profile0.png │ ├── profile1.png │ ├── trace0.png │ └── trace1.png │ ├── trace_16_active.png │ ├── trace_16_inactive.png │ ├── trace_32_active.png │ ├── trace_32_inactive.png │ ├── trace_48_active.png │ ├── trace_48_inactive.png │ ├── trace_64_active.png │ └── trace_64_inactive.png ├── doc └── main.md ├── icons ├── icon.png └── icon64.png ├── lib └── main.js ├── manifest.json ├── options.html ├── options.js └── styles.css /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | *.zip 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhall-amphibee/xdebug-ext/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhall-amphibee/xdebug-ext/HEAD/README.md -------------------------------------------------------------------------------- /background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhall-amphibee/xdebug-ext/HEAD/background.js -------------------------------------------------------------------------------- /cookies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhall-amphibee/xdebug-ext/HEAD/cookies.js -------------------------------------------------------------------------------- /data/icons/debug_16_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhall-amphibee/xdebug-ext/HEAD/data/icons/debug_16_active.png -------------------------------------------------------------------------------- /data/icons/debug_16_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhall-amphibee/xdebug-ext/HEAD/data/icons/debug_16_inactive.png -------------------------------------------------------------------------------- /data/icons/debug_32_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhall-amphibee/xdebug-ext/HEAD/data/icons/debug_32_active.png -------------------------------------------------------------------------------- /data/icons/debug_32_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhall-amphibee/xdebug-ext/HEAD/data/icons/debug_32_inactive.png -------------------------------------------------------------------------------- /data/icons/debug_48_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhall-amphibee/xdebug-ext/HEAD/data/icons/debug_48_active.png -------------------------------------------------------------------------------- /data/icons/debug_48_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhall-amphibee/xdebug-ext/HEAD/data/icons/debug_48_inactive.png -------------------------------------------------------------------------------- /data/icons/debug_64_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhall-amphibee/xdebug-ext/HEAD/data/icons/debug_64_active.png -------------------------------------------------------------------------------- /data/icons/debug_64_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhall-amphibee/xdebug-ext/HEAD/data/icons/debug_64_inactive.png -------------------------------------------------------------------------------- /data/icons/profile_16_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhall-amphibee/xdebug-ext/HEAD/data/icons/profile_16_active.png -------------------------------------------------------------------------------- /data/icons/profile_16_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhall-amphibee/xdebug-ext/HEAD/data/icons/profile_16_inactive.png -------------------------------------------------------------------------------- /data/icons/profile_24_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhall-amphibee/xdebug-ext/HEAD/data/icons/profile_24_inactive.png -------------------------------------------------------------------------------- /data/icons/profile_32_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhall-amphibee/xdebug-ext/HEAD/data/icons/profile_32_active.png -------------------------------------------------------------------------------- /data/icons/profile_32_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhall-amphibee/xdebug-ext/HEAD/data/icons/profile_32_inactive.png -------------------------------------------------------------------------------- /data/icons/profile_48_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhall-amphibee/xdebug-ext/HEAD/data/icons/profile_48_active.png -------------------------------------------------------------------------------- /data/icons/profile_48_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhall-amphibee/xdebug-ext/HEAD/data/icons/profile_48_inactive.png -------------------------------------------------------------------------------- /data/icons/profile_64_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhall-amphibee/xdebug-ext/HEAD/data/icons/profile_64_active.png -------------------------------------------------------------------------------- /data/icons/profile_64_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhall-amphibee/xdebug-ext/HEAD/data/icons/profile_64_inactive.png -------------------------------------------------------------------------------- /data/icons/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhall-amphibee/xdebug-ext/HEAD/data/icons/settings.png -------------------------------------------------------------------------------- /data/icons/sources/debug0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhall-amphibee/xdebug-ext/HEAD/data/icons/sources/debug0.png -------------------------------------------------------------------------------- /data/icons/sources/debug1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhall-amphibee/xdebug-ext/HEAD/data/icons/sources/debug1.png -------------------------------------------------------------------------------- /data/icons/sources/profile0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhall-amphibee/xdebug-ext/HEAD/data/icons/sources/profile0.png -------------------------------------------------------------------------------- /data/icons/sources/profile1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhall-amphibee/xdebug-ext/HEAD/data/icons/sources/profile1.png -------------------------------------------------------------------------------- /data/icons/sources/trace0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhall-amphibee/xdebug-ext/HEAD/data/icons/sources/trace0.png -------------------------------------------------------------------------------- /data/icons/sources/trace1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhall-amphibee/xdebug-ext/HEAD/data/icons/sources/trace1.png -------------------------------------------------------------------------------- /data/icons/trace_16_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhall-amphibee/xdebug-ext/HEAD/data/icons/trace_16_active.png -------------------------------------------------------------------------------- /data/icons/trace_16_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhall-amphibee/xdebug-ext/HEAD/data/icons/trace_16_inactive.png -------------------------------------------------------------------------------- /data/icons/trace_32_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhall-amphibee/xdebug-ext/HEAD/data/icons/trace_32_active.png -------------------------------------------------------------------------------- /data/icons/trace_32_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhall-amphibee/xdebug-ext/HEAD/data/icons/trace_32_inactive.png -------------------------------------------------------------------------------- /data/icons/trace_48_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhall-amphibee/xdebug-ext/HEAD/data/icons/trace_48_active.png -------------------------------------------------------------------------------- /data/icons/trace_48_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhall-amphibee/xdebug-ext/HEAD/data/icons/trace_48_inactive.png -------------------------------------------------------------------------------- /data/icons/trace_64_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhall-amphibee/xdebug-ext/HEAD/data/icons/trace_64_active.png -------------------------------------------------------------------------------- /data/icons/trace_64_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhall-amphibee/xdebug-ext/HEAD/data/icons/trace_64_inactive.png -------------------------------------------------------------------------------- /doc/main.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhall-amphibee/xdebug-ext/HEAD/icons/icon.png -------------------------------------------------------------------------------- /icons/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhall-amphibee/xdebug-ext/HEAD/icons/icon64.png -------------------------------------------------------------------------------- /lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhall-amphibee/xdebug-ext/HEAD/lib/main.js -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhall-amphibee/xdebug-ext/HEAD/manifest.json -------------------------------------------------------------------------------- /options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhall-amphibee/xdebug-ext/HEAD/options.html -------------------------------------------------------------------------------- /options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhall-amphibee/xdebug-ext/HEAD/options.js -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhall-amphibee/xdebug-ext/HEAD/styles.css --------------------------------------------------------------------------------