Glitch CSS
Randomises various CSS properties when activated, with degrees of intensity controlled by mouse position.
Glitch CSS क्या है?
Glitch CSS autr द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Randomises various CSS properties when activated, with degrees of intensity controlled by mouse position."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Glitch CSS एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Adds a button to the toolbar which you can toggle on and off. When activated, CSS properties are randomised, with degrees of intensity controlled by mouse position. WARNING: Fast moving images.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | cgcilhkiomcipacenbiamfgkeihaenlp |
आधिकारिक URL | https://chrome.google.com/webstore/detail/glitch-css/cgcilhkiomcipacenbiamfgkeihaenlp |
विवरण | Randomises various CSS properties when activated, with degrees of intensity controlled by mouse position. |
फ़ाइल का आकार | 81.87 KB |
स्थापना संख्या | 457 |
वर्तमान संस्करण | 1.1 |
अंतिम अपडेट | 2013-11-23 |
प्रकाशन तिथि | 2013-11-23 |
रेटिंग | 4.46/5 कुल 13 रेटिंग्स |
डेवलपर | autr |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | http://idiron.com |
समर्थित भाषाएँ | en-GB |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "Glitch CSS", "version": "1.1", "description": "Randomises various CSS properties when activated, with degrees of intensity controlled by mouse position.", "manifest_version": 2, "icons": { "16": "glitch16.png", "48": "glitch48.png", "128": "glitch128.png" }, "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "glitchOff.png", "default_title": "Glitch CSS" }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "jquery-1.7.2.min.js", "glitch.js" ], "all_frames": false } ] } |