├── .editorconfig ├── .eslintrc.js ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── _locales ├── de │ └── messages.json ├── en │ └── messages.json ├── es │ └── messages.json ├── fr │ └── messages.json ├── it │ └── messages.json ├── ja │ └── messages.json ├── ko │ └── messages.json ├── pl │ └── messages.json ├── pt_BR │ └── messages.json ├── ru │ └── messages.json ├── vi │ └── messages.json ├── zh_CN │ └── messages.json └── zh_TW │ └── messages.json ├── cors_config.json ├── demo.gif ├── icons ├── icon128.png ├── icon16.png ├── icon32.png ├── icon48.png ├── icon64.png └── original_light.svg ├── js ├── background.js └── content.js ├── manifest.json ├── manifest_firefox.json ├── pages ├── cache_manager.html └── cache_manager.js ├── popup ├── Inter-Bold.ttf ├── Inter-Regular.ttf ├── coffee.png ├── discord.svg ├── download.svg ├── github.svg ├── index.css ├── index.html ├── index.js └── missing_annotations.svg └── promo ├── Large.jpg ├── Marquee.jpg ├── Marquee_kofi.png ├── Marquee_short.png ├── Small.jpg └── popup_preview.png /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaackd/AnnotationsRestored/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaackd/AnnotationsRestored/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaackd/AnnotationsRestored/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaackd/AnnotationsRestored/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaackd/AnnotationsRestored/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaackd/AnnotationsRestored/HEAD/README.md -------------------------------------------------------------------------------- /_locales/de/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaackd/AnnotationsRestored/HEAD/_locales/de/messages.json -------------------------------------------------------------------------------- /_locales/en/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaackd/AnnotationsRestored/HEAD/_locales/en/messages.json -------------------------------------------------------------------------------- /_locales/es/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaackd/AnnotationsRestored/HEAD/_locales/es/messages.json -------------------------------------------------------------------------------- /_locales/fr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaackd/AnnotationsRestored/HEAD/_locales/fr/messages.json -------------------------------------------------------------------------------- /_locales/it/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaackd/AnnotationsRestored/HEAD/_locales/it/messages.json -------------------------------------------------------------------------------- /_locales/ja/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaackd/AnnotationsRestored/HEAD/_locales/ja/messages.json -------------------------------------------------------------------------------- /_locales/ko/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaackd/AnnotationsRestored/HEAD/_locales/ko/messages.json -------------------------------------------------------------------------------- /_locales/pl/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaackd/AnnotationsRestored/HEAD/_locales/pl/messages.json -------------------------------------------------------------------------------- /_locales/pt_BR/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaackd/AnnotationsRestored/HEAD/_locales/pt_BR/messages.json -------------------------------------------------------------------------------- /_locales/ru/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaackd/AnnotationsRestored/HEAD/_locales/ru/messages.json -------------------------------------------------------------------------------- /_locales/vi/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaackd/AnnotationsRestored/HEAD/_locales/vi/messages.json -------------------------------------------------------------------------------- /_locales/zh_CN/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaackd/AnnotationsRestored/HEAD/_locales/zh_CN/messages.json -------------------------------------------------------------------------------- /_locales/zh_TW/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaackd/AnnotationsRestored/HEAD/_locales/zh_TW/messages.json -------------------------------------------------------------------------------- /cors_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaackd/AnnotationsRestored/HEAD/cors_config.json -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaackd/AnnotationsRestored/HEAD/demo.gif -------------------------------------------------------------------------------- /icons/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaackd/AnnotationsRestored/HEAD/icons/icon128.png -------------------------------------------------------------------------------- /icons/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaackd/AnnotationsRestored/HEAD/icons/icon16.png -------------------------------------------------------------------------------- /icons/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaackd/AnnotationsRestored/HEAD/icons/icon32.png -------------------------------------------------------------------------------- /icons/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaackd/AnnotationsRestored/HEAD/icons/icon48.png -------------------------------------------------------------------------------- /icons/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaackd/AnnotationsRestored/HEAD/icons/icon64.png -------------------------------------------------------------------------------- /icons/original_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaackd/AnnotationsRestored/HEAD/icons/original_light.svg -------------------------------------------------------------------------------- /js/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaackd/AnnotationsRestored/HEAD/js/background.js -------------------------------------------------------------------------------- /js/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaackd/AnnotationsRestored/HEAD/js/content.js -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaackd/AnnotationsRestored/HEAD/manifest.json -------------------------------------------------------------------------------- /manifest_firefox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaackd/AnnotationsRestored/HEAD/manifest_firefox.json -------------------------------------------------------------------------------- /pages/cache_manager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaackd/AnnotationsRestored/HEAD/pages/cache_manager.html -------------------------------------------------------------------------------- /pages/cache_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaackd/AnnotationsRestored/HEAD/pages/cache_manager.js -------------------------------------------------------------------------------- /popup/Inter-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaackd/AnnotationsRestored/HEAD/popup/Inter-Bold.ttf -------------------------------------------------------------------------------- /popup/Inter-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaackd/AnnotationsRestored/HEAD/popup/Inter-Regular.ttf -------------------------------------------------------------------------------- /popup/coffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaackd/AnnotationsRestored/HEAD/popup/coffee.png -------------------------------------------------------------------------------- /popup/discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaackd/AnnotationsRestored/HEAD/popup/discord.svg -------------------------------------------------------------------------------- /popup/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaackd/AnnotationsRestored/HEAD/popup/download.svg -------------------------------------------------------------------------------- /popup/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaackd/AnnotationsRestored/HEAD/popup/github.svg -------------------------------------------------------------------------------- /popup/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaackd/AnnotationsRestored/HEAD/popup/index.css -------------------------------------------------------------------------------- /popup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaackd/AnnotationsRestored/HEAD/popup/index.html -------------------------------------------------------------------------------- /popup/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaackd/AnnotationsRestored/HEAD/popup/index.js -------------------------------------------------------------------------------- /popup/missing_annotations.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaackd/AnnotationsRestored/HEAD/popup/missing_annotations.svg -------------------------------------------------------------------------------- /promo/Large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaackd/AnnotationsRestored/HEAD/promo/Large.jpg -------------------------------------------------------------------------------- /promo/Marquee.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaackd/AnnotationsRestored/HEAD/promo/Marquee.jpg -------------------------------------------------------------------------------- /promo/Marquee_kofi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaackd/AnnotationsRestored/HEAD/promo/Marquee_kofi.png -------------------------------------------------------------------------------- /promo/Marquee_short.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaackd/AnnotationsRestored/HEAD/promo/Marquee_short.png -------------------------------------------------------------------------------- /promo/Small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaackd/AnnotationsRestored/HEAD/promo/Small.jpg -------------------------------------------------------------------------------- /promo/popup_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaackd/AnnotationsRestored/HEAD/promo/popup_preview.png --------------------------------------------------------------------------------