Fiddly

Fiddle the Web.

What is Fiddly?

Fiddly is a Chrome extension developed by http://0th.me, and its main feature is "Fiddle the Web.".

Extension Screenshots

screenshot
screenshot
screenshot

Download Fiddly Extension CRX File

Download Fiddly extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Fiddly Fiddly
ID concgaogdeplfahemjhlnbaacknijidi
Official URL https://chrome.google.com/webstore/detail/fiddly/concgaogdeplfahemjhlnbaacknijidi
Description Fiddle the Web.
File Size 212 KB
Installation Count 17
Current Version 0.26
Last Updated 2017-03-29
Publish Date 2017-03-29
Rating 5.00/5 Total 1 Ratings
Developer http://0th.me
Payment Type free
Extension Website http://0th.me/fiddly
Help Page URL http://0th.me/fiddly
Supported Languages 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"
        }
    }
}