7
有沒有簡單的方法在我的Chrome擴展程序代碼上使用高級優化?extern鉻擴展API的最佳方法,使用Closure編譯器高級優化?
它使用chrome API,Advanced Optimization不會識別其關鍵字。是否有一個文件或東西,extern所有的鉻API?
有沒有簡單的方法在我的Chrome擴展程序代碼上使用高級優化?extern鉻擴展API的最佳方法,使用Closure編譯器高級優化?
它使用chrome API,Advanced Optimization不會識別其關鍵字。是否有一個文件或東西,extern所有的鉻API?
無論何時您需要externs文件,請查看閉包編譯器資源庫的contrib/externs目錄。的Chrome擴展的實習醫生在contrib/externs/chrome_extensions.js被發現,並且可以使用如下:
// ==ClosureCompiler==
// @compilation_level ADVANCED_OPTIMIZATIONS
// @externs_url https://raw.githubusercontent.com/google/closure-compiler/master/contrib/externs/chrome_extensions.js
// ==/ClosureCompiler==
// Your code here.
非常感謝你,這正是我一直在尋找!我知道存在,但無法找到它! –