├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── analytics.js ├── background.js ├── content.css ├── content.js ├── icon-128.png ├── icon-16.png ├── icon-48.png ├── logo.png ├── manifest.json ├── popup.html └── style.css /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.tabSize": 2 3 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anamritraj/google-photos-plus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anamritraj/google-photos-plus/HEAD/README.md -------------------------------------------------------------------------------- /analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anamritraj/google-photos-plus/HEAD/analytics.js -------------------------------------------------------------------------------- /background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anamritraj/google-photos-plus/HEAD/background.js -------------------------------------------------------------------------------- /content.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anamritraj/google-photos-plus/HEAD/content.css -------------------------------------------------------------------------------- /content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anamritraj/google-photos-plus/HEAD/content.js -------------------------------------------------------------------------------- /icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anamritraj/google-photos-plus/HEAD/icon-128.png -------------------------------------------------------------------------------- /icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anamritraj/google-photos-plus/HEAD/icon-16.png -------------------------------------------------------------------------------- /icon-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anamritraj/google-photos-plus/HEAD/icon-48.png -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anamritraj/google-photos-plus/HEAD/logo.png -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anamritraj/google-photos-plus/HEAD/manifest.json -------------------------------------------------------------------------------- /popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anamritraj/google-photos-plus/HEAD/popup.html -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anamritraj/google-photos-plus/HEAD/style.css --------------------------------------------------------------------------------