├── .gitignore ├── babel.config.js ├── package.json ├── readme.md ├── src ├── assets │ └── logo.png ├── entry │ ├── CssSelector.js │ ├── background.js │ ├── content.js │ ├── css_to_xpath.js │ ├── options.js │ ├── picker.css │ └── popup.js ├── manifest.development.json ├── manifest.production.json └── view │ ├── options.vue │ └── popup.vue ├── vue.config.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeneralNewsExtractor/GneList/HEAD/.gitignore -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeneralNewsExtractor/GneList/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeneralNewsExtractor/GneList/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeneralNewsExtractor/GneList/HEAD/readme.md -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeneralNewsExtractor/GneList/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/entry/CssSelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeneralNewsExtractor/GneList/HEAD/src/entry/CssSelector.js -------------------------------------------------------------------------------- /src/entry/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeneralNewsExtractor/GneList/HEAD/src/entry/background.js -------------------------------------------------------------------------------- /src/entry/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeneralNewsExtractor/GneList/HEAD/src/entry/content.js -------------------------------------------------------------------------------- /src/entry/css_to_xpath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeneralNewsExtractor/GneList/HEAD/src/entry/css_to_xpath.js -------------------------------------------------------------------------------- /src/entry/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeneralNewsExtractor/GneList/HEAD/src/entry/options.js -------------------------------------------------------------------------------- /src/entry/picker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeneralNewsExtractor/GneList/HEAD/src/entry/picker.css -------------------------------------------------------------------------------- /src/entry/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeneralNewsExtractor/GneList/HEAD/src/entry/popup.js -------------------------------------------------------------------------------- /src/manifest.development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeneralNewsExtractor/GneList/HEAD/src/manifest.development.json -------------------------------------------------------------------------------- /src/manifest.production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeneralNewsExtractor/GneList/HEAD/src/manifest.production.json -------------------------------------------------------------------------------- /src/view/options.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeneralNewsExtractor/GneList/HEAD/src/view/options.vue -------------------------------------------------------------------------------- /src/view/popup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeneralNewsExtractor/GneList/HEAD/src/view/popup.vue -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeneralNewsExtractor/GneList/HEAD/vue.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeneralNewsExtractor/GneList/HEAD/yarn.lock --------------------------------------------------------------------------------