├── LICENSE ├── _locales ├── en │ └── messages.json └── ja │ └── messages.json ├── background.js ├── fonts └── notosans.otf ├── icons ├── 128.png ├── 256.png └── 96.png ├── manifest.json ├── manifest_firefox.json ├── popup.html └── popup.js /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/mishare/HEAD/LICENSE -------------------------------------------------------------------------------- /_locales/en/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/mishare/HEAD/_locales/en/messages.json -------------------------------------------------------------------------------- /_locales/ja/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/mishare/HEAD/_locales/ja/messages.json -------------------------------------------------------------------------------- /background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/mishare/HEAD/background.js -------------------------------------------------------------------------------- /fonts/notosans.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/mishare/HEAD/fonts/notosans.otf -------------------------------------------------------------------------------- /icons/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/mishare/HEAD/icons/128.png -------------------------------------------------------------------------------- /icons/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/mishare/HEAD/icons/256.png -------------------------------------------------------------------------------- /icons/96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/mishare/HEAD/icons/96.png -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/mishare/HEAD/manifest.json -------------------------------------------------------------------------------- /manifest_firefox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/mishare/HEAD/manifest_firefox.json -------------------------------------------------------------------------------- /popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/mishare/HEAD/popup.html -------------------------------------------------------------------------------- /popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/mishare/HEAD/popup.js --------------------------------------------------------------------------------