├── .gitignore ├── LICENSE ├── README.md ├── V3_MIGRATION.md ├── background-page.html ├── background-script.js ├── common.js ├── imgs ├── add.png ├── del.png ├── error.png ├── go.png ├── ok.png ├── rss.png ├── rss16.png ├── rss48.png └── rss96.png ├── index.html ├── index.js ├── manifest.json └── zip.sh /.gitignore: -------------------------------------------------------------------------------- 1 | *.xpi 2 | *.zip 3 | node_modules 4 | screenshots 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgreg/rsstodolist-addon/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgreg/rsstodolist-addon/HEAD/README.md -------------------------------------------------------------------------------- /V3_MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgreg/rsstodolist-addon/HEAD/V3_MIGRATION.md -------------------------------------------------------------------------------- /background-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgreg/rsstodolist-addon/HEAD/background-page.html -------------------------------------------------------------------------------- /background-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgreg/rsstodolist-addon/HEAD/background-script.js -------------------------------------------------------------------------------- /common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgreg/rsstodolist-addon/HEAD/common.js -------------------------------------------------------------------------------- /imgs/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgreg/rsstodolist-addon/HEAD/imgs/add.png -------------------------------------------------------------------------------- /imgs/del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgreg/rsstodolist-addon/HEAD/imgs/del.png -------------------------------------------------------------------------------- /imgs/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgreg/rsstodolist-addon/HEAD/imgs/error.png -------------------------------------------------------------------------------- /imgs/go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgreg/rsstodolist-addon/HEAD/imgs/go.png -------------------------------------------------------------------------------- /imgs/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgreg/rsstodolist-addon/HEAD/imgs/ok.png -------------------------------------------------------------------------------- /imgs/rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgreg/rsstodolist-addon/HEAD/imgs/rss.png -------------------------------------------------------------------------------- /imgs/rss16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgreg/rsstodolist-addon/HEAD/imgs/rss16.png -------------------------------------------------------------------------------- /imgs/rss48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgreg/rsstodolist-addon/HEAD/imgs/rss48.png -------------------------------------------------------------------------------- /imgs/rss96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgreg/rsstodolist-addon/HEAD/imgs/rss96.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgreg/rsstodolist-addon/HEAD/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgreg/rsstodolist-addon/HEAD/index.js -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgreg/rsstodolist-addon/HEAD/manifest.json -------------------------------------------------------------------------------- /zip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgreg/rsstodolist-addon/HEAD/zip.sh --------------------------------------------------------------------------------