├── .bowerrc ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jshintrc ├── Gruntfile.js ├── README.md ├── app ├── _locales │ └── en │ │ └── messages.json ├── images │ ├── icon128__c.png │ ├── icon16__c.png │ ├── icon19__c.png │ ├── iconOff19__c.png │ ├── iconOff__c.png │ └── icon__c.png ├── manifest.json ├── scripts │ ├── background.js │ └── contentscript.js └── styles │ └── main.css ├── bower.json ├── npm-debug.log ├── package.json └── test ├── .bowerrc ├── bower.json ├── index.html └── spec └── test.js /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "app/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnakov/force-apiNames/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnakov/force-apiNames/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnakov/force-apiNames/HEAD/.jshintrc -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnakov/force-apiNames/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnakov/force-apiNames/HEAD/README.md -------------------------------------------------------------------------------- /app/_locales/en/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnakov/force-apiNames/HEAD/app/_locales/en/messages.json -------------------------------------------------------------------------------- /app/images/icon128__c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnakov/force-apiNames/HEAD/app/images/icon128__c.png -------------------------------------------------------------------------------- /app/images/icon16__c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnakov/force-apiNames/HEAD/app/images/icon16__c.png -------------------------------------------------------------------------------- /app/images/icon19__c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnakov/force-apiNames/HEAD/app/images/icon19__c.png -------------------------------------------------------------------------------- /app/images/iconOff19__c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnakov/force-apiNames/HEAD/app/images/iconOff19__c.png -------------------------------------------------------------------------------- /app/images/iconOff__c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnakov/force-apiNames/HEAD/app/images/iconOff__c.png -------------------------------------------------------------------------------- /app/images/icon__c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnakov/force-apiNames/HEAD/app/images/icon__c.png -------------------------------------------------------------------------------- /app/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnakov/force-apiNames/HEAD/app/manifest.json -------------------------------------------------------------------------------- /app/scripts/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnakov/force-apiNames/HEAD/app/scripts/background.js -------------------------------------------------------------------------------- /app/scripts/contentscript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnakov/force-apiNames/HEAD/app/scripts/contentscript.js -------------------------------------------------------------------------------- /app/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnakov/force-apiNames/HEAD/app/styles/main.css -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnakov/force-apiNames/HEAD/bower.json -------------------------------------------------------------------------------- /npm-debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnakov/force-apiNames/HEAD/npm-debug.log -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnakov/force-apiNames/HEAD/package.json -------------------------------------------------------------------------------- /test/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /test/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnakov/force-apiNames/HEAD/test/bower.json -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnakov/force-apiNames/HEAD/test/index.html -------------------------------------------------------------------------------- /test/spec/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnakov/force-apiNames/HEAD/test/spec/test.js --------------------------------------------------------------------------------