Film Waiver

Get discount codes for film festival submissions

Film Waiver란 무엇입니까?

Film Waiver은(는) Cosmek Labs에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Get discount codes for film festival submissions"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        FilmWaiver scours the internet to bring you discount codes for film festival submissions. If you submit your films to lots of festivals on a regular basis, the submission fees can start to add up. With FilmWaiver, our chrome app lights up just before you create that submission! To let you know if there is a discount code for the festival you are submitting to.
FilmWaiver is made by film makers, for film makers. Save yourself some money, and goodluck with your next blockbuster!                    

확장 프로그램 기본 정보

이름 Film Waiver Film Waiver
ID igcpmngccbnnfppollaomgpjdelinean
공식 URL https://chromewebstore.google.com/detail/film-waiver/igcpmngccbnnfppollaomgpjdelinean
설명 Get discount codes for film festival submissions
파일 크기 101 KB
설치 횟수 174
현재 버전 0.0.4
최근 업데이트 2021-11-27
출시 날짜 2020-08-13
평점 5.00/5 총 3 개의 평점
개발자 Cosmek Labs
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://filmwaiver.io
도움말 페이지 URL https://filmwaiver.io
개인정보 보호 정책 페이지 URL https://cosmeklabs.com/privacy.html
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Film Waiver",
    "version": "0.0.4",
    "description": "Get discount codes for film festival submissions",
    "permissions": [
        "tabs",
        "activeTab",
        "declarativeContent",
        "clipboardWrite",
        "https:\/\/fw-api.herokuapp.com\/"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": {
            "16": "images\/toolbar-icon-16.png",
            "32": "images\/toolbar-icon-32.png",
            "48": "images\/toolbar-icon-48.png",
            "128": "images\/toolbar-icon-128.png"
        },
        "default_title": "Film Waiver",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/toolbar-icon-16.png",
        "32": "images\/toolbar-icon-32.png",
        "48": "images\/toolbar-icon-48.png",
        "128": "images\/toolbar-icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/filmfreeway.com\/*",
                "https:\/\/filmfreeway.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "manifest_version": 2
}