Film Waiver
Get discount codes for film festival submissions
ما هو Film Waiver؟
Film Waiver هو إضافة Chrome تم تطويرها بواسطة Cosmek Labs، والميزة الرئيسية لها هي "Get discount codes for film festival submissions".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Film Waiver
قم بتنزيل ملفات الامتداد Film Waiver بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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!
معلومات أساسية عن التمديد
الاسم | |
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 |
عنوان صفحة المساعدة | https://filmwaiver.io |
عنوان صفحة سياسة الخصوصية | 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 } |