在Angular 2/4中的Chrome扩展

我正在尝试为使用Angular 4的谷歌Chrome浏览器创建Chrome扩展。我只需要页面的URL和标题,在浏览器图标(单击事件)上点击。 到目前为止,我做了以下事情

我创建了一个eventPage,当点击扩展名图标时,该页面会被调用。 代码=>

if (typeof chrome.browserAction !== 'undefined') {
    chrome.browserAction.onClicked.addListener(function(tab) {
        listService.getBookmarks().then(bookmarkLists => {
            bookmarkLists = bookmarkLists;
            getSelectedTab(bookmarkLists);
        });
    });
} else {
    console.log('EventPage initialized');
}

function getSelectedTab(bookmarkLists) {
    chrome.tabs.getSelected(null, function(tab) {
        let newBookmark: Object = {
            name: tab.title,
            url: tab.url
        };
        bookmarkLists.push(newBookmark);
        listService.setBookmarks(bookmarkLists);
    });
}

listService.getBookmarks => listService有一个方法getBookmarks,它已经有一些数据作为键值对。

如果任何人都可以告诉我如何获取我触发的页面的URL和标题,请点击扩展点击。

建议的编辑 Manifest.json

{
  "manifest_version": 2,

  "name": "Extension",
  "description": "This extension ...",
  "version": "1.0",
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",

  "browser_action": {
    "default_popup": "index.html"
  },
  "permissions": [
    "storage",
    "tabs",
    "activeTab",
    "http://*/*",
    "https://*/*"
  ],

  "background": {
    "page": "index.html",
    "persistent": false
  },

  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}

这就是我如何获得扩展名的网址和标题

var that = this;
chrome.tabs.query({
    currentWindow: true,
    active: true
}, function(tabs) {
  console.log(tabs[0]);
  if (tabs.length > 0) {
    if (tabs[0].url !== undefined && tabs[0].url !== null && tabs[0].url !== '') {
      that.tabId = tabs[0].id;
      that.tabURL = tabs[0].url;
      that.tabTitle = tabs[0].title;
      that.favIconUrl = tabs[0].favIconUrl;
    }
  }
});

将该文件包含在组件的顶部

///<reference path="../../../node_modules/@types/chrome/index.d.ts" />
链接地址: http://www.djcxy.com/p/66585.html

上一篇: Chrome extension in Angular 2/4

下一篇: How to create an extension in chrome to run a website