Glitch CSS
Randomises various CSS properties when activated, with degrees of intensity controlled by mouse position.
什麼是Glitch CSS?
Glitch CSS是由autr開發的Chrome擴展程式,該擴展的主要功能是“Randomises various CSS properties when activated, with degrees of intensity controlled by mouse position.”。
擴展截圖
下載Glitch CSS擴展crx文件
下載Glitch CSS擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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 } ] } |