Expresso Beans Remote Link / Image Fixer

Now with chart enhancement! [using chart.js (copyright its contributors), and regression-js (Tom Alexander) - see license.txt]

Expresso Beans Remote Link / Image Fixerคืออะไร?

Expresso Beans Remote Link / Image Fixer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://crappybot.blogspot.com และคุณลักษณะหลักของมันคือ "Now with chart enhancement! [using chart.js (copyright its contributors), and regression-js (Tom Alexander) - see license.txt]"

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

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Expresso Beans Remote Link / Image Fixer

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

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

                        UPDATED: now fixes youtube-player iFrames on forum.expressobeans.com, also has a CSS fix feature

IMPORTANT SECURITY INFO:
Users should be aware that this extension’s CSS fix feature injects archived CSS from https://web.archive.org/ into forum.expressobeans.com.  This has the potential to inject malicious code if https://web.archive.org/ is compromised.  This feature is disabled by default.  The extension includes a warning about this, and a link to the warning is displayed when the CSS fix feature is turned on.

THERE IS A RECOMMENDED PERSONAL VERSION OF THIS EXTENSION THAT INSTEAD LOADS BLANK CSS FROM THE EXTENSION'S FILES THAT USERS CAN CUSTOMIZE.  READ ABOUT IT HERE:

https://crappybot.blogspot.com/2018/10/quick-eb-fixer-update.html


Small javascript extension to sort of fix stuff.

Corrects  sources on forum.expressobeans.com that match either "http://expressobeans.com/remote/..." or "http://www.expressobeans.com/remote/..." (broken) to "http://expressobeans.com/visual/IS.php?id=..." (working) so that the images display properly.  

Also fixes the links (that cause these problems) on "discuss remotely" pages on expressobeans.com .

NEW:

If you're signed into the site, it'll show you some neat interactive charts.  If you prefer the standard charts, you can turn off the chart features from the extension's options menu at chrome://extensions/.                    

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

ชื่อ Expresso Beans Remote Link / Image Fixer Expresso Beans Remote Link / Image Fixer
ID idkeegmcnmeojcobapdegogagboopbhe
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/expresso-beans-remote-lin/idkeegmcnmeojcobapdegogagboopbhe
คำอธิบาย Now with chart enhancement! [using chart.js (copyright its contributors), and regression-js (Tom Alexander) - see license.txt]
ขนาดไฟล์ 19.27 KB
จำนวนการติดตั้ง 11
เวอร์ชันปัจจุบัน 1.9
อัปเดตครั้งล่าสุด 2018-10-22
วันที่เผยแพร่ 2018-10-22
ผู้พัฒนา https://crappybot.blogspot.com
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว http://crappybot.blogspot.com/p/terms.html
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Expresso Beans Remote Link \/ Image Fixer",
    "version": "1.9",
    "description": "Now with chart enhancement! [using chart.js (copyright its contributors), and regression-js (Tom Alexander) - see license.txt]",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_popup": "optionsbrowser.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/forum.expressobeans.com\/*",
                "https:\/\/forum.expressobeans.com\/*"
            ],
            "js": [
                "EBfixer.js"
            ]
        },
        {
            "matches": [
                "https:\/\/forum.expressobeans.com\/*",
                "http:\/\/forum.expressobeans.com\/*"
            ],
            "js": [
                "styleinjectfix.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "http:\/\/expressobeans.com\/visual\/remoting.php\/*"
            ],
            "js": [
                "remotefixer.js"
            ]
        },
        {
            "matches": [
                "http:\/\/expressobeans.com\/public\/detail.php\/*",
                "http:\/\/www.expressobeans.com\/public\/detail.php\/*"
            ],
            "css": [
                "graphs.css"
            ],
            "js": [
                "setup.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "Tom_Alexander_Regression.js",
        "graphs.js"
    ],
    "options_ui": {
        "page": "optionsbrowser.html"
    },
    "externally_connectable": []
}