Reduce Background Flicker
Prevent that annoying white flash between pages
Reduce Background Flicker क्या है?
Reduce Background Flicker https://rileyjshaw.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Prevent that annoying white flash between pages"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Reduce Background Flicker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Switching between dark pages on Chrome can sometimes lead to a blinding flash of white. This extension tries to preserve background color between page loads, if possible. For the real Lords of Darkness out there, setting a custom user stylesheet to your preferred color (https://code.google.com/p/chromium/issues/detail?id=1373#c261) will probably be more effective than this extension. The same trick applies to Firefox. Icon created by Anand A Nair from the Noun Project, CC.
एक्सटेंशन की मूल जानकारी
नाम | Reduce Background Flicker |
ID | hdnedegfdlmgbabbgmnjnmmijfjeaiib |
आधिकारिक URL | https://chromewebstore.google.com/detail/reduce-background-flicker/hdnedegfdlmgbabbgmnjnmmijfjeaiib |
विवरण | Prevent that annoying white flash between pages |
फ़ाइल का आकार | 12.26 KB |
स्थापना संख्या | 123 |
वर्तमान संस्करण | 1.0.0 |
अंतिम अपडेट | 2015-11-23 |
प्रकाशन तिथि | 2015-11-23 |
रेटिंग | 3.00/5 कुल 10 रेटिंग्स |
डेवलपर | https://rileyjshaw.com |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Reduce Background Flicker", "short_name": "Reduce Flicker", "description": "Prevent that annoying white flash between pages", "author": "rileyjshaw", "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "version": "1.0.0", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "main.js" ], "all_frames": false, "run_at": "document_start" } ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "manifest_version": 2 } |