gitextract_q1i2r_1d/ ├── README.md ├── full-chrome-plugin-demo/ │ ├── _locales/ │ │ ├── en/ │ │ │ └── messages.json │ │ └── zh_CN/ │ │ └── messages.json │ ├── background.html │ ├── css/ │ │ └── custom.css │ ├── devtools.html │ ├── js/ │ │ ├── background.js │ │ ├── content-script.js │ │ ├── devtools.js │ │ ├── inject.js │ │ ├── jquery-1.8.3.js │ │ ├── mypanel.js │ │ ├── options.js │ │ ├── popup.js │ │ └── show-image-content-size.js │ ├── manifest.json │ ├── mypanel.html │ ├── newtab.html │ ├── options.html │ ├── popup.html │ └── sidebar.html ├── page-action-demo/ │ ├── js/ │ │ └── background.js │ ├── manifest.json │ └── popup.html └── simple-chrome-plugin-demo/ ├── content-script.js ├── manifest.json ├── popup.html └── popup.js