Fiddly

Fiddle the Web.

什么是Fiddly?

Fiddly是由http://0th.me开发的Chrome扩展程序,该扩展的主要功能是“Fiddle the Web.”。

扩展截图

screenshot
screenshot
screenshot

下载Fiddly扩展crx文件

下载Fiddly扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        A quick little tool that lets you :
 - Edit / Remove Sections of a website.
 - Download HTML5 Videos                    

扩展基本信息

名称 Fiddly Fiddly
ID concgaogdeplfahemjhlnbaacknijidi
官方URL https://chrome.google.com/webstore/detail/fiddly/concgaogdeplfahemjhlnbaacknijidi
简介 Fiddle the Web.
文件大小 212 KB
安装次数 17
当前版本 0.26
更新时间 2017-03-29
上架时间 2017-03-29
评分 5.00/5 共1次评分
开发者 http://0th.me
付费类型 free
扩展官网 http://0th.me/fiddly
帮助页面URL http://0th.me/fiddly
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Fiddly",
    "description": "Fiddle the Web.",
    "version": "0.26",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "jquery.js",
                "myscript.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        ""
    ],
    "web_accessible_resources": [
        "close.png",
        "move.png",
        "edit.png",
        "snap.png",
        "icon_active.png"
    ],
    "commands": {
        "toggleState": {
            "suggested_key": {
                "default": "Ctrl+Shift+E",
                "mac": "Command+Shift+E"
            },
            "description": "Toggle Editor"
        },
        "toggleVidState": {
            "suggested_key": {
                "default": "Ctrl+Shift+V",
                "mac": "Command+Shift+V"
            },
            "description": "Toggle Video Downloader"
        }
    }
}