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
官方網址 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"
        }
    }
}