├── .gitignore ├── resources ├── images │ ├── widgetList.jpg │ ├── elementsPanel.jpg │ ├── sidebarPanel.jpg │ └── GitHub-Mark-120px-plus.png ├── bootstrap.min.js └── jquery-3.2.1.min.js ├── devtools.html ├── snkitAnimations.css ├── manifest.json ├── LICENSE ├── eventPage.js ├── content_script.js ├── README.md ├── snkit.js ├── snkit.html └── devtools.js /.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | -------------------------------------------------------------------------------- /resources/images/widgetList.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtandy13/SNKit/HEAD/resources/images/widgetList.jpg -------------------------------------------------------------------------------- /resources/images/elementsPanel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtandy13/SNKit/HEAD/resources/images/elementsPanel.jpg -------------------------------------------------------------------------------- /resources/images/sidebarPanel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtandy13/SNKit/HEAD/resources/images/sidebarPanel.jpg -------------------------------------------------------------------------------- /resources/images/GitHub-Mark-120px-plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtandy13/SNKit/HEAD/resources/images/GitHub-Mark-120px-plus.png -------------------------------------------------------------------------------- /devtools.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /snkitAnimations.css: -------------------------------------------------------------------------------- 1 | @keyframes pulse { 2 | from { 3 | transform: scale3d(1, 1, 1); 4 | } 5 | 6 | 50% { 7 | transform: scale3d(1.05, 1.05, 1.05); 8 | } 9 | 10 | to { 11 | transform: scale3d(1, 1, 1); 12 | } 13 | } 14 | 15 | .pulse { 16 | animation: pulse 1s; 17 | } -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "SNKit", 3 | "version": "3.0.0", 4 | "description": "Chrome Developer Tools extension for ServiceNow.", 5 | "devtools_page": "devtools.html", 6 | "manifest_version": 3, 7 | "short_name": "Chrome Developer Tools extension for ServiceNow", 8 | "permissions": [ 9 | "tabs" 10 | ], 11 | "content_scripts": [ 12 | { 13 | "matches": [ 14 | "If you're having any technical difficulties with the SNKit devtools extension or you'd like to see something 177 | changed, please log an issue through the SNKit GitHub page link below.
178 |
186 |