Automatic Fullscreen on Crunchyroll
Click on the switch buttom, press F11 and stay in your bed ;)
Automatic Fullscreen on Crunchyroll क्या है?
Automatic Fullscreen on Crunchyroll Unknown द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Click on the switch buttom, press F11 and stay in your bed ;)"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Automatic Fullscreen on Crunchyroll एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension automatically makes the crunchyroll video-player fullscreen when you open the page. Github: https://github.com/Coystark/automatic-fullscreen-crunchyroll
एक्सटेंशन की मूल जानकारी
नाम | Automatic Fullscreen on Crunchyroll |
ID | pcbinggjelhcbebilcmlikomcgiippjb |
आधिकारिक URL | https://chromewebstore.google.com/detail/automatic-fullscreen-on-c/pcbinggjelhcbebilcmlikomcgiippjb |
विवरण | Click on the switch buttom, press F11 and stay in your bed ;) |
फ़ाइल का आकार | 17.22 KB |
स्थापना संख्या | 365 |
वर्तमान संस्करण | 0.3 |
अंतिम अपडेट | 2020-04-12 |
प्रकाशन तिथि | 2020-04-12 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | Unknown |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/Coystark/automatic-fullscreen-crunchyroll |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Automatic Fullscreen on Crunchyroll", "version": "0.3", "description": "Click on the switch buttom, press F11 and stay in your bed ;)", "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/www.crunchyroll.com\/*\/*", "http:\/\/www.crunchyroll.com\/*\/*" ], "js": [ "content.js" ] } ], "background": { "scripts": [ "background.js" ], "persistant": false }, "browser_action": { "default_title": "Automatic Fullscreen on Crunchyroll", "default_popup": "popup.html", "default_icon": "icons\/icon_disabled_16.png" }, "icons": { "16": "icons\/icon_16.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" } } |