chrome 扩展如何在日历中的教科书中写点东西?
How a chrome extension can write something in a textbook in calendar?
我是chrome扩展的初学者,现在想开发一个简单的功能。
我想在日历的文本框中写点东西喜欢照片
可能没有命名为教科书,所以我在这里添加照片。
我有一些问题:
1. 如何使用*.js 检测文本框?
2.如何在里面自动写东西?
你能贴一些代码来更好地理解吗?谢谢。
我有一个 *.js 来反转文本,但我不是 100% 真正理解它,你能给我解释一下吗?谢谢。
// Called when the url of a tab changes.
function checkForValidUrl(tabId, changeInfo, tab) {
if (tab.url.indexOf('calendar') > -1) {
chrome.tabs.insertCSS(null, {code: '.ui-sch input { direction: rtl }'});
chrome.tabs.insertCSS(null, {code: '.ui-sch textarea { direction: rtl }'});
}
};
// Listen for any changes to the URL of any tab.
chrome.tabs.onUpdated.addListener(checkForValidUrl);
我找到了这个答案,我们可以通过搜索他的ID并在其中写一些东西来做到这一点
我是chrome扩展的初学者,现在想开发一个简单的功能。
我想在日历的文本框中写点东西喜欢照片
可能没有命名为教科书,所以我在这里添加照片。
我有一些问题: 1. 如何使用*.js 检测文本框? 2.如何在里面自动写东西?
你能贴一些代码来更好地理解吗?谢谢。
我有一个 *.js 来反转文本,但我不是 100% 真正理解它,你能给我解释一下吗?谢谢。
// Called when the url of a tab changes.
function checkForValidUrl(tabId, changeInfo, tab) {
if (tab.url.indexOf('calendar') > -1) {
chrome.tabs.insertCSS(null, {code: '.ui-sch input { direction: rtl }'});
chrome.tabs.insertCSS(null, {code: '.ui-sch textarea { direction: rtl }'});
}
};
// Listen for any changes to the URL of any tab.
chrome.tabs.onUpdated.addListener(checkForValidUrl);
我找到了这个答案,我们可以通过搜索他的ID并在其中写一些东西来做到这一点