نشر في :
الجمعة, فبراير 28, 2014
|  من طرف
Unknown
كن جزءا من تميزنا و اصنع مستقبلك ...
Google Extention |
chrome.extension.onMessage.addListener(function(request, sender, sendResponse) { switch(request.type) { case "dom-loaded": alert(request.data.myProperty); break; } return true; });
window.addEventListener("load", function() { chrome.extension.sendMessage({ type: "dom-loaded", data: { myProperty: "value" } }); }, true);
var port = chrome.runtime.connect({name: "my-channel"}); port.postMessage({myProperty: "value"}); port.onMessage.addListener(function(msg) { // do some stuff here });
و في صفحة الـ background نضع الكود التالي: chrome.runtime.onConnect.addListener(function(port) { if(port.name == "my-channel"){ port.onMessage.addListener(function(msg) { // do some stuff here }); } });
تلخيص مادة امنية البيانات و المصادقة 1 / Cryptography and Network Security |
تلخيص مادة تحليل و تصميم نظم المعلومات / Systems Analysis and Design |
كيفيه فك رمز الحمايه لاجهزه الاندرويد |
Google Extention |
devtools_page": "devtools.html"
chrome.devtools.panels.create( "TheNameOfYourExtension", "img/icon16.png", "index.html", function() { } );
"omnibox": { "keyword" : "yeah" }
chrome.omnibox.onInputChanged.addListener(function(text, suggest) { suggest([ {content: text + " one", description: "the first one"}, {content: text + " number two", description: "the second entry"} ]); }); chrome.omnibox.onInputEntered.addListener(function(text) { alert('You just typed "' + text + '"'); });
تلخيص برمجة نظم الانترنت / PHP |
تلخيص مادة لغات الجيل الرابع 1 / ORACLE |
بامكانك الان تحميل الجزء الاول من تلخيص مادة يحتوي على المواضيع التالية : - Normalization - Functional Dependency - Deteminency Diagram - ER Diagram - Introduction to SQL 1 |
الجزء الاول من تلخيص مادة اساسيات الانظمة الذكية / Artificial Intelligent |
عشر عادات يومية تغير حياتك |
اختبار العمر العقلي |
Google Extention |
"browser_action": { "default_icon": { "19": "icons/19x19.png", "38": "icons/38x38.png" }, "default_title": "That's the tool tip", "default_popup": "popup.html" }
chrome.browserAction.setBadgeText({text: "yeah"});
"page_action": { "default_icon": { "19": "images/icon19.png", "38": "images/icon38.png" }, "default_title": "Google Mail", "default_popup": "popup.html" }
مادة استرجاع المعلومات كاملة / Information Retrieval |
تصميم الصفحات الالكترونية كاملة / HTML |
0 التعليقات :