Blockspring Scripts

Build add-ons for your favorite apps with Python.

Blockspring Scripts란 무엇입니까?

Blockspring Scripts은(는) https://scripts.blockspring.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Build add-ons for your favorite apps with Python."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Blockspring Scripts embeds an online code editor into your favorite apps. Write and deploy API-powered scripts in minutes for GitHub, Trello, Asana, and more.

What can you build?
- Alerts
- Reports
- Sync data between apps
- Buttons
- Events ("If x then y")
- Integrations

Why is this better than writing a script on top of an API?
- Authentication is handled for you. No need to work with API tokens or OAuth.
- Autocomplete lets you know what functions you can use and when. No need to spend time parsing through API docs.
- Triggers/events can be chosen from a dropdown. No need to setup webhooks and servers.
- 3rd party apps can be chosen from a dropdown. No need to learn their APIs either.                    

확장 프로그램 기본 정보

이름 Blockspring Scripts Blockspring Scripts
ID ccjffcohomaaknapjmonhcocfpmdpkpe
공식 URL https://chromewebstore.google.com/detail/blockspring-scripts/ccjffcohomaaknapjmonhcocfpmdpkpe
설명 Build add-ons for your favorite apps with Python.
파일 크기 477 KB
설치 횟수 1,464
현재 버전 1.1.7
최근 업데이트 2018-06-03
출시 날짜 2018-06-03
평점 3.50/5 총 12 개의 평점
개발자 https://scripts.blockspring.com
결제 유형 free
확장 프로그램 웹 사이트 https://scripts.blockspring.com
도움말 페이지 URL https://blockspring-help.readme.io/docs/quickstart
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Blockspring Scripts",
    "version": "1.1.7",
    "description": "Build add-ons for your favorite apps with Python.",
    "homepage_url": "https:\/\/www.blockspring.com\/scripts",
    "author": "Blockspring ",
    "icons": {
        "128": "images\/logo128.png",
        "250": "images\/logo.png"
    },
    "browser_action": {
        "default_title": "Blockspring Scripts",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage",
        "https:\/\/*.blockspring.com\/*",
        "https:\/\/trello.com\/*",
        "https:\/\/airtable.com\/*",
        "https:\/\/fieldbook.com\/*",
        "https:\/\/app.asana.com\/*",
        "https:\/\/www.pivotaltracker.com\/*",
        "https:\/\/app.close.io\/*",
        "https:\/\/github.com\/*",
        "https:\/\/rally1.rallydev.com\/*",
        "webRequest",
        "webRequestBlocking"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "web_accessible_resources": [
        "images\/*",
        "*.js",
        "entry.js"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.blockspring.com\/*",
                "https:\/\/app.asana.com\/*",
                "https:\/\/trello.com\/*",
                "https:\/\/fieldbook.com\/*",
                "http:\/\/localhost:3000\/*",
                "https:\/\/www.pivotaltracker.com\/*",
                "https:\/\/github.com\/*",
                "https:\/\/airtable.com\/*",
                "https:\/\/rally1.rallydev.com\/*"
            ],
            "css": [
                "common\/tippy.css",
                "content.css"
            ],
            "js": [
                "common\/jquery-3.2.1.min.js",
                "common\/tippy.js",
                "config.js",
                "content_script.js"
            ]
        }
    ]
}