FastSNOW

Used to automatically insert values into SNOW Bournemouth and speed up mass error reporting.

FastSNOW란 무엇입니까?

FastSNOW은(는) jonflynndesigner에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Used to automatically insert values into SNOW Bournemouth and speed up mass error reporting."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

FastSNOW 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        FastSNOW is a Chrome extension designed with speeding up messaging IT with a complaint that affects multiple people at the NCCA.

How the program works:

If someone has supplied you a link, simply click it and you will be taken to the correct page and it will automatically fill in all the required info for you.

If going to the page asks you to login, do so and repeat the previous step by clicking the link again.

The program also allows you to generate your own links by doing the following:

•Fill in the SNOW page as you would usually. If you don't want people to have your phone number, simply put the Service Desks own extension 65515.

•Before submitting, click the plugin icon in the toolbar and proceed by clicking the "Generate" button. This will create the new URL and place it into the Generated URL box. To copy the URL, simply press the Copy URL button. You will see a message appear on screen if this was successful.

•(optional) Click "Shorten Url" to create a short version of the url using the Google Url Shortener and send that link to people.

How it works:

How this works is it stores the html form ID and value within the URL. This is done by using a hash at the end of the URL and using the format of =& for each entry that needs to be filled on the webpage.

This process can be used on any site that doesn't already use a hash in the URL. The "Insert URL Values" is for this purpose and can be used on other pages of your choosing. Simply suffix the URL you usually use to access with a # followed by the form ID on the page, an equals and then the value. If you wish to include multiple entries, use & to join these together.

***CHANGE LOG***
Version 1.9:
•Corrected broken syntax. Don't know how that managed to get through!

Version 1.8:
•Fixed issue with room name and asset number were not sending.

Version 1.7:
•Fixed manifest.json error. Should download now.

Version 1.6:
•Cleaned up code and added comments to the js
•Added an info button linking to the GitHub page to help with how to use the program

Version 1.5:
•Included Google URL Shortener API to shorten urls without leaving the extension
•Improved UI design
•Improved Error messaging

GitHub: https://github.com/JFDesigner/FastSNOW                    

확장 프로그램 기본 정보

이름 FastSNOW FastSNOW
ID jajjomlhfnfjbmkckiagklcbemblokoc
공식 URL https://chromewebstore.google.com/detail/fastsnow/jajjomlhfnfjbmkckiagklcbemblokoc
설명 Used to automatically insert values into SNOW Bournemouth and speed up mass error reporting.
파일 크기 38.82 KB
설치 횟수 15
현재 버전 1.9
최근 업데이트 2016-04-20
출시 날짜 2016-04-20
평점 5.00/5 총 2 개의 평점
개발자 jonflynndesigner
결제 유형 free
확장 프로그램 웹 사이트 http://jfdesigner.co.uk
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "FastSNOW",
    "description": "Used to automatically insert values into SNOW Bournemouth and speed up mass error reporting.",
    "version": "1.9",
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "author": "Jonathan Flynn (http:\/\/jfdesigner.co.uk)",
    "browser_action": {
        "default_title": "Parse the Hash values",
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png",
        "256": "icon.png"
    },
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' https:\/\/apis.google.com; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/bournemouth.service-now.com\/*"
            ],
            "js": [
                "parse.js"
            ],
            "run_at": "document_end"
        }
    ]
}