Math as You Will

This extension allows you to utilize the power of TeX and MathJax.

Math as You Willคืออะไร?

Math as You Will เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Colliot และคุณลักษณะหลักของมันคือ "This extension allows you to utilize the power of TeX and MathJax."

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Math as You Will

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

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

                        This extension allows you to replace picture formulas with MathJax-rendered formula, render with MathJax anywhere with customizable settings, render temporarily, and output standard TeX code.

==初次使用請右擊圖標打開選項頁面==
==On first use please right click on the icon to open the option page==

1. Go to settings to customize as you will. Determine where and how math will be rendered and whether images will be replaced. Support wordpress, artofproblemsolving, and actually any site that puts the TeX code inside the image alt property.
2. Click on the extension icon to get the source code. The output is in the standard format, i.e. inline codes are indicated by $, and displaymode $$. This works on any sites with MathJax, even if it is not rendered by this extension.
3. In the context menu, there is a temporary-rendering button. Click once to load MathJax temporarily on a page that does not have MathJax loaded. This works on Gmail.



===Version 1.0.3===
Option page totally redesigned with AngularJS.
Beware: this version modifies the CSP header and allows unsafe-eval to work on some sites with strict security policies (like GitHub).

===Version 1.0.2===
Added color and some other extensions to default.


===Version 1.0.1===
Fixed some html in the options page.


For any suggestions and problems, please feel free to contact [email protected].                    

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

ชื่อ Math as You Will Math as You Will
ID dhclcadjnhmoimnlkbboigmihbebfmdc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/math-as-you-will/dhclcadjnhmoimnlkbboigmihbebfmdc
คำอธิบาย This extension allows you to utilize the power of TeX and MathJax.
ขนาดไฟล์ 19.17 MB
จำนวนการติดตั้ง 442
เวอร์ชันปัจจุบัน 1.0.3
อัปเดตครั้งล่าสุด 2019-03-09
วันที่เผยแพร่ 2019-03-08
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Colliot
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "background": {
        "persistent": true,
        "scripts": [
            "app\/chrome\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon16.png"
    },
    "content_scripts": [
        {
            "js": [
                "app\/chrome\/content_script.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        }
    ],
    "description": "This extension allows you to utilize the power of TeX and MathJax.",
    "icons": {
        "128": "icon128.png",
        "16": "icon16.png",
        "48": "icon48.png"
    },
    "manifest_version": 2,
    "name": "Math as You Will",
    "options_page": "app\/html\/options.html",
    "permissions": [
        "tabs",
        "",
        "storage",
        "contextMenus",
        "notifications",
        "webRequest",
        "webRequestBlocking"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.0.3",
    "web_accessible_resources": [
        "*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}