Browser Control

This extension allows you to delete whatever you want from a webpage.

Browser Controlคืออะไร?

Browser Control เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jesse Benton และคุณลักษณะหลักของมันคือ "This extension allows you to delete whatever you want from a webpage."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Browser Control

ดาวน์โหลดไฟล์ส่วนขยาย Browser Control ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Remove any part of a webpage that you don't want to see! Turn on the app, hover over the element you don't want to see, hold the 'ctrl' key and right click!

Version 1.3
  Simplified interface. Use the extension icon to enable or disable.
    Once enabled: hold 'ctrl' and right click the page element you 
    want to remove.
  Fixed iframe removal
  Removed jQuery dependency

Version 1.2.1
  Bug fix

Version 1.2
  New Hot Key mode! Once enabled, hold the Control Key(left or right) to activate.

Version 1.1
  Toggle the app without refreshing the page!
  Right click to erase elements
  iFrames automatically removed(toggle coming soon)                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Browser Control Browser Control
ID jfkkofodnfgoogjgpfbapecgapbchhei
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/browser-control/jfkkofodnfgoogjgpfbapecgapbchhei
คำอธิบาย This extension allows you to delete whatever you want from a webpage.
ขนาดไฟล์ 23.39 KB
จำนวนการติดตั้ง 192
เวอร์ชันปัจจุบัน 1.3.1.1
อัปเดตครั้งล่าสุด 2014-07-30
วันที่เผยแพร่ 2014-07-30
คะแนน 3.00/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา Jesse Benton
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Browser Control",
    "description": "This extension allows you to delete whatever you want from a webpage.",
    "version": "1.3.1.1",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/browser_control.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "images\/16.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "browser_action": {
        "name": "Browser Control"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "storage",
        "https:\/\/*\/*"
    ]
}