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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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 |
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 } |