├── .github └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── LICENSE.md ├── README.md ├── css └── popup.css ├── data ├── shopify_apps.js └── shopify_themes.js ├── img └── icons │ ├── bigcommerce.png │ ├── detector-disabled.png │ ├── detector.png │ ├── fera.png │ ├── magento1.png │ ├── magento2.png │ ├── shopify.png │ ├── wix.png │ └── woocommerce.png ├── js ├── background.js ├── content.js ├── detector.js ├── popup.js └── sad.js ├── lib ├── bootstrap │ ├── css │ │ └── bootstrap.min.css │ └── js │ │ └── bootstrap.min.js ├── jquery │ └── jquery.min.js └── zepto │ └── zepto.min.js ├── manifest.json ├── popup.html └── worker_wrapper.js /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feracommerce/shopify_app_detector/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feracommerce/shopify_app_detector/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feracommerce/shopify_app_detector/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feracommerce/shopify_app_detector/HEAD/README.md -------------------------------------------------------------------------------- /css/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feracommerce/shopify_app_detector/HEAD/css/popup.css -------------------------------------------------------------------------------- /data/shopify_apps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feracommerce/shopify_app_detector/HEAD/data/shopify_apps.js -------------------------------------------------------------------------------- /data/shopify_themes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feracommerce/shopify_app_detector/HEAD/data/shopify_themes.js -------------------------------------------------------------------------------- /img/icons/bigcommerce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feracommerce/shopify_app_detector/HEAD/img/icons/bigcommerce.png -------------------------------------------------------------------------------- /img/icons/detector-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feracommerce/shopify_app_detector/HEAD/img/icons/detector-disabled.png -------------------------------------------------------------------------------- /img/icons/detector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feracommerce/shopify_app_detector/HEAD/img/icons/detector.png -------------------------------------------------------------------------------- /img/icons/fera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feracommerce/shopify_app_detector/HEAD/img/icons/fera.png -------------------------------------------------------------------------------- /img/icons/magento1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feracommerce/shopify_app_detector/HEAD/img/icons/magento1.png -------------------------------------------------------------------------------- /img/icons/magento2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feracommerce/shopify_app_detector/HEAD/img/icons/magento2.png -------------------------------------------------------------------------------- /img/icons/shopify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feracommerce/shopify_app_detector/HEAD/img/icons/shopify.png -------------------------------------------------------------------------------- /img/icons/wix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feracommerce/shopify_app_detector/HEAD/img/icons/wix.png -------------------------------------------------------------------------------- /img/icons/woocommerce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feracommerce/shopify_app_detector/HEAD/img/icons/woocommerce.png -------------------------------------------------------------------------------- /js/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feracommerce/shopify_app_detector/HEAD/js/background.js -------------------------------------------------------------------------------- /js/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feracommerce/shopify_app_detector/HEAD/js/content.js -------------------------------------------------------------------------------- /js/detector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feracommerce/shopify_app_detector/HEAD/js/detector.js -------------------------------------------------------------------------------- /js/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feracommerce/shopify_app_detector/HEAD/js/popup.js -------------------------------------------------------------------------------- /js/sad.js: -------------------------------------------------------------------------------- 1 | var SAD = {}; 2 | -------------------------------------------------------------------------------- /lib/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feracommerce/shopify_app_detector/HEAD/lib/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /lib/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feracommerce/shopify_app_detector/HEAD/lib/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /lib/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feracommerce/shopify_app_detector/HEAD/lib/jquery/jquery.min.js -------------------------------------------------------------------------------- /lib/zepto/zepto.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feracommerce/shopify_app_detector/HEAD/lib/zepto/zepto.min.js -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feracommerce/shopify_app_detector/HEAD/manifest.json -------------------------------------------------------------------------------- /popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feracommerce/shopify_app_detector/HEAD/popup.html -------------------------------------------------------------------------------- /worker_wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feracommerce/shopify_app_detector/HEAD/worker_wrapper.js --------------------------------------------------------------------------------