├── .gitignore ├── README.md ├── extension ├── Roboto-Regular-webfont.woff ├── background.js ├── defaults.js ├── download_notification.html ├── downloader.js ├── images │ ├── loadinfo.net.gif │ ├── logo-117.png │ ├── logo-128.png │ ├── logo-16.png │ ├── logo-19.png │ └── logo-38.png ├── jszip │ └── jszip.js ├── manifest.json ├── options.html ├── options.js ├── page-find-injected.js ├── popup.html ├── popup.js ├── res-linkify.js ├── resolver-injected.js └── stylesheet.css ├── makezip.sh └── screenshots ├── chrome-store-badge.png ├── feature-browser-action.png ├── feature-download-drawable.png ├── feature-linkify.png └── feature-omnibox.png /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | extension.zip -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-resource-navigator/HEAD/README.md -------------------------------------------------------------------------------- /extension/Roboto-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-resource-navigator/HEAD/extension/Roboto-Regular-webfont.woff -------------------------------------------------------------------------------- /extension/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-resource-navigator/HEAD/extension/background.js -------------------------------------------------------------------------------- /extension/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-resource-navigator/HEAD/extension/defaults.js -------------------------------------------------------------------------------- /extension/download_notification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-resource-navigator/HEAD/extension/download_notification.html -------------------------------------------------------------------------------- /extension/downloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-resource-navigator/HEAD/extension/downloader.js -------------------------------------------------------------------------------- /extension/images/loadinfo.net.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-resource-navigator/HEAD/extension/images/loadinfo.net.gif -------------------------------------------------------------------------------- /extension/images/logo-117.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-resource-navigator/HEAD/extension/images/logo-117.png -------------------------------------------------------------------------------- /extension/images/logo-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-resource-navigator/HEAD/extension/images/logo-128.png -------------------------------------------------------------------------------- /extension/images/logo-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-resource-navigator/HEAD/extension/images/logo-16.png -------------------------------------------------------------------------------- /extension/images/logo-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-resource-navigator/HEAD/extension/images/logo-19.png -------------------------------------------------------------------------------- /extension/images/logo-38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-resource-navigator/HEAD/extension/images/logo-38.png -------------------------------------------------------------------------------- /extension/jszip/jszip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-resource-navigator/HEAD/extension/jszip/jszip.js -------------------------------------------------------------------------------- /extension/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-resource-navigator/HEAD/extension/manifest.json -------------------------------------------------------------------------------- /extension/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-resource-navigator/HEAD/extension/options.html -------------------------------------------------------------------------------- /extension/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-resource-navigator/HEAD/extension/options.js -------------------------------------------------------------------------------- /extension/page-find-injected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-resource-navigator/HEAD/extension/page-find-injected.js -------------------------------------------------------------------------------- /extension/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-resource-navigator/HEAD/extension/popup.html -------------------------------------------------------------------------------- /extension/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-resource-navigator/HEAD/extension/popup.js -------------------------------------------------------------------------------- /extension/res-linkify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-resource-navigator/HEAD/extension/res-linkify.js -------------------------------------------------------------------------------- /extension/resolver-injected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-resource-navigator/HEAD/extension/resolver-injected.js -------------------------------------------------------------------------------- /extension/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-resource-navigator/HEAD/extension/stylesheet.css -------------------------------------------------------------------------------- /makezip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-resource-navigator/HEAD/makezip.sh -------------------------------------------------------------------------------- /screenshots/chrome-store-badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-resource-navigator/HEAD/screenshots/chrome-store-badge.png -------------------------------------------------------------------------------- /screenshots/feature-browser-action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-resource-navigator/HEAD/screenshots/feature-browser-action.png -------------------------------------------------------------------------------- /screenshots/feature-download-drawable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-resource-navigator/HEAD/screenshots/feature-download-drawable.png -------------------------------------------------------------------------------- /screenshots/feature-linkify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-resource-navigator/HEAD/screenshots/feature-linkify.png -------------------------------------------------------------------------------- /screenshots/feature-omnibox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-resource-navigator/HEAD/screenshots/feature-omnibox.png --------------------------------------------------------------------------------