├── .editorconfig ├── .eslintrc ├── LICENSE ├── README.md ├── _locales ├── en │ └── messages.json └── zh_CN │ └── messages.json ├── bg ├── bg-install.js ├── bg-xhr.js └── bg.js ├── content ├── show-info.css └── show-info.js ├── icon ├── 128.png ├── 16.png ├── 256.png ├── 32.png ├── 48.png ├── 64.png └── 96.png └── manifest.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tophf/view-image-video-info/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tophf/view-image-video-info/HEAD/.eslintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tophf/view-image-video-info/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tophf/view-image-video-info/HEAD/README.md -------------------------------------------------------------------------------- /_locales/en/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tophf/view-image-video-info/HEAD/_locales/en/messages.json -------------------------------------------------------------------------------- /_locales/zh_CN/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tophf/view-image-video-info/HEAD/_locales/zh_CN/messages.json -------------------------------------------------------------------------------- /bg/bg-install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tophf/view-image-video-info/HEAD/bg/bg-install.js -------------------------------------------------------------------------------- /bg/bg-xhr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tophf/view-image-video-info/HEAD/bg/bg-xhr.js -------------------------------------------------------------------------------- /bg/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tophf/view-image-video-info/HEAD/bg/bg.js -------------------------------------------------------------------------------- /content/show-info.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tophf/view-image-video-info/HEAD/content/show-info.css -------------------------------------------------------------------------------- /content/show-info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tophf/view-image-video-info/HEAD/content/show-info.js -------------------------------------------------------------------------------- /icon/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tophf/view-image-video-info/HEAD/icon/128.png -------------------------------------------------------------------------------- /icon/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tophf/view-image-video-info/HEAD/icon/16.png -------------------------------------------------------------------------------- /icon/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tophf/view-image-video-info/HEAD/icon/256.png -------------------------------------------------------------------------------- /icon/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tophf/view-image-video-info/HEAD/icon/32.png -------------------------------------------------------------------------------- /icon/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tophf/view-image-video-info/HEAD/icon/48.png -------------------------------------------------------------------------------- /icon/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tophf/view-image-video-info/HEAD/icon/64.png -------------------------------------------------------------------------------- /icon/96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tophf/view-image-video-info/HEAD/icon/96.png -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tophf/view-image-video-info/HEAD/manifest.json --------------------------------------------------------------------------------